最佳答案
我正在尝试获得我的 linq 语句,以获得两个日期之间的所有记录,我不太确定我需要改变它的工作: (a.Start >= startDate && endDate)
var appointmentNoShow =
from a in appointments
from p in properties
from c in clients
where a.Id == p.OID && (a.Start.Date >= startDate.Date && endDate)