Entity Frameworkでこのコードを使用すると、次のエラーが発生します。特定の日付のすべての行を取得する必要がありDateTimeStart
ます。この形式のデータ型はDataTypeです。2013-01-30 12:00:00.000
コード:
var eventsCustom = eventCustomRepository.FindAllEventsCustomByUniqueStudentReference(userDevice.UniqueStudentReference)
.Where(x => x.DateTimeStart.Date == currentDateTime.Date);
エラー:
base {System.SystemException}={"指定されたタイプメンバー'Date'はLINQtoEntitiesではサポートされていません。初期化子、エンティティメンバー、およびエンティティナビゲーションプロパティのみがサポートされています。"}
それを修正する方法はありますか?