How trunc datetime field to date with Aurelius

That's also what I have always used and have been used so far. Something like

TheDate := EncodeDate(2024, 3, 19);
{...}
.Where(
  (Linq['IssueDate'] >= TheDate) and (Linq['IssueDate'] < IncDay(TheDate, 1))
)
1 Like