How trunc datetime field to date with Aurelius

And why can't you just follow the suggestion and use it like this:

TheDate1 := EncodeDate(2024, 3, 19);
TheDate2:= EncodeDate(2024, 3, 31);
{...}
.Where(
  (Linq['IssueDate'] >= TheDate1) and (Linq['IssueDate'] < TheDate2)
)