Goal:
Get all panels whose due date is <= today’s date.
Entity/db diagram:

Controller:
public ActionResult Index(PanelViewModel panelViewModel)
{
panelViewModel.Panels = _panelRepository.GetPanels()
.Where(p => p.PanelApplicationForms.Count > 0
&& p.IsPublish
&& p.PanelApplicationForms != null)
.OrderBy(t => t.Title);
return View(panelViewModel);
}
Try