J'essaie d'obtenir ma déclaration linq pour obtenir tous les enregistrements entre deux dates, et je ne suis pas tout à fait sûr de ce que je dois changer pour le faire fonctionner : (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)