我有這樣的代碼:比較的日期與LINQ
i.SpesaVitto = db.TDP_NotaSpeseSezB.Where(p => p.GiornoFine == null &&
((DateTime)p.Giorno).Date == ((DateTime)i.Data).Date &&
p.MissioneID == missioneID).Sum(p => p.Costo);
如果我啓動它,我得到這個錯誤:
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
我怎麼能比較日期時間字段沒有時間部分
謝謝
您正在使用什麼數據庫系統? – Gabe 2010-03-01 15:17:15