Hi - I want to be able to filter on dates which have a certain day. In SQL i would just use DATEPART, so how can this be achieved in LLBLGen selfservicingusing PredicateExpression?
e.g.
filter.Add(InvoiceFields.Date.<something to say get the day of month> == 20);
I was thinking perhaps there's a way to either specify a SQL function to wrap around the value, or perhaps a way (hacky) to append T-SQL to the predicate?
How can I achieve what I want here?