フィールドを含むLinqクエリでのみ日付のみを比較する必要がありdatetime
ます。ただし、以下の構文では、次のエラーメッセージが表示されます。
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
フィールドから日付だけを抽出する方法を知っている人はいdatetime
ますか?
var duplicate = from a in _db.AgentProductTraining
where a.CourseCode == course.CourseCode &&
a.DateTaken.Date == course.DateTaken.Date &&
a.SymNumber == symNumber
select a;