谁能告诉我这里的日期比较可能有什么问题?
在位置 60“参考 s.SwipeDateTime.Value.Date”的类型“Edm.DateTime”中不存在属性“日期”
var lastSwipe = (from s in this.DataWorkspace.ApplicationData.EmployeeSwipeLogs
where s.Employee.Id == emp.Id &&
s.SwipeIsValid == true &&
s.SwipeDateTime.Value.Date == DateTime.Today
orderby s.SwipeDateTime descending
select s).FirstOrDefault();