var query = from C in db.clients
join O in db.orders on c.clientid equals O.clientid
join P in db.products on O.productid equals P.productid
select new {C,O};
I want to perform a search based on the above join. The input param could be
C.ClientID and/or P.ProductName and/or P.ProductType and/or O.ShippingType
How would i build a dynamic search clause?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…