Hi, Volcan
Please help,
How to set criteria with null condition
request.Criteria = Serenity.Criteria.and(request.Criteria,
[['EntryDate'], '=', 'Null'],
[['Result'], '!=', 'TBC'],
[['ReceivedDate'], '<>', 'Null']);
I have create above criteria but get an error "Conversion failed when converting date and/or time from character string".
Regards


['is null', ['EntryDate']]
['is not null', ['ReceivedDate']]
It's Perfect!
Thanks All...
Most helpful comment
['is null', ['EntryDate']]
['is not null', ['ReceivedDate']]