ここでの日付の比較で何が間違っている可能性があるか教えてもらえますか?
「s.SwipeDateTime.Value.Dateを参照する」位置60のタイプ「Edm.DateTime」にプロパティ「Date」が存在しません
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();