How to make searching on dates

Posts   
 
    
moftol
User
Posts: 2
Joined: 18-Oct-2007
# Posted on: 14-Nov-2007 07:49:54   

Hello i have a problem on making search on the basis of dates if any have the idea or code sample thanks.

Walaa avatar
Walaa
Support Team
Posts: 14995
Joined: 21-Aug-2005
# Posted on: 14-Nov-2007 10:26:37   

Do you have any specific SQL query in mind, that you want to execute?

A simple example is to get all past orders:

myPredicateExpression.Add(OrderFields.OrderDate < DateTime.Now);

Where you have to use the predicate expression in a fetch method, as shown in the docs.