最佳答案
在 实体架构中使用这段代码会收到以下错误。我需要得到一个特定日期的所有行,DateTimeStart
是这种格式的数据类型 2013-01-30 12:00:00.000
密码:
var eventsCustom = eventCustomRepository.FindAllEventsCustomByUniqueStudentReference(userDevice.UniqueStudentReference)
.Where(x => x.DateTimeStart.Date == currentDateTime.Date);
错误:
Base { System.SystemException } = {“指定的类型成员‘ Date’为 在 LINQ 到实体中不支持。只有初始值设定项,实体成员, 支持实体导航属性。”}
有办法解决吗?