Hi,
I am trying to run a search query using PredicateExpression. My search is like:
Select * from Customers
innerjoin Orders on order.CustomerID = Customer.CustomerID
innerjoin shipping on shipping.OrderID = order.OrderID
where customer.Name= 'John'
or order.orderdate ='4 Jan 2010'
or shipping.shippingdate = '5 Feb 2010'.
Could someone please help me with this query.
Many thanks,
Anu