Following this example from http://www.albahari.com/nutshell/predicatebuilder.aspx
IQueryable<Product> SearchProducts (params string[] keywords)
{
var predicate = PredicateBuilder.False<Product>();
foreach (string keyword in keywords)
{
string temp = keyword;
predicate = predicate.Or (p => p.Description.Contains (temp));
}
return dataContext.Products.Where (predicate);
}
I have a similiar requirement except that firstly I have to do an AND query and secondly , unlike the above example, I have a bunch of field names and a value to search in each of them. The field names and the values both are unknown till the user passes them through. I ended up doing something like the code below which works but obviously is very tightly coupled.
IEnumerable<someClass> qry = context.someClass;
var pb = PredicateBuilder.True<someClass>();
foreach (customClass rule in Filters)
{
switch ( rule.field)
{
case "FirstName":
pb = pb.And(p=>p.FirstName.Contains(rule.data));
break;
case "LastName":
pb = pb.And(p=>p.LastName.Contains(rule.data));
break;
case "City":
pb = pb.And(p=>p.City.Contains(rule.data));
break;
}
qry.AsQueryable().Where(pb);
}
return qry;
As can be seen from above the Rule class has a field and data property. What would be ideal is if I could dynamically create the predicatebuilder , something like
filterClause = "p=>p." + rule.field + ".Contains(" + rule.data + ")";
pb = pb.And(filterClause);
qry.AsQueryable().Where(pb);
Thanks in advance for any inputs