¡@

Home 

c# Programming Glossary: whereclause

How can I send where statements to a method which are dynamically executed in a LINQ statement?

http://stackoverflow.com/questions/1782079/how-can-i-send-where-statements-to-a-method-which-are-dynamically-executed-in-a

List Customer customers Func ... bool whereClause return from c in customers where ...whereClause... select.. ... bool whereClause return from c in customers where ...whereClause... select c .ToList Answer thanks elder_george and arjuns.. customers Customer.GetCustomers Func Customer bool whereClause c c.LastName.Contains a c.FirstName.Contains J foreach var..