A Query object can also take a filter expression, e.g.:
"f => f.IsActive = true"
How can I use DateTime value in the filter expression? Like:
"f => f.LastModified < \"2025-05-13T00:00:00.0000000+02:00\""
The above expression gives an error. Since the filter expression is a string, I cannot use normal datetime objects and have to cast them to string.