我正在尝试在脚手架索引视图上运行一个非常简单的搜索。通常这对我有用,但使用日期我无法让它工作。
我的控制器中的代码是:
public ActionResult Index(DateTime SearchDate)
{
var query = from a in db.AppointmentProcedures
where a.BookingStatus == false
orderby a.AppointmentStartTime
select a;
if (SearchDate != null)
{
query = from a in db.AppointmentProcedures
orderby a.AppointmentDate
where a.AppointmentDate == SearchDate
select a;
}
return View(query);
}
但是我遇到了转换问题。在视图中,我只有一个简单的日期时间选择器。