up vote 13 down vote favorite
1
share [g+] share [fb]

Is there a pattern using Linq to dynamically create a filter?

I have the need to create custom filtering on a list, in the past I would just dynamically create the SQL...it doesn't seem like this is possible with Linq.

link|improve this question

60% accept rate
feedback

4 Answers

up vote 13 down vote accepted

Check out the Dynamic Linq Library from ScottGu's blog:

For example, below is a standard type-safe LINQ to SQL VB query that retrieves data from a Northwind database and displays it in a ASP.NET GridView control:alt text

Using the LINQ DynamicQuery library I could re-write the above query expression instead like so:alt text

Notice how the conditional-where clause and sort-orderby clause now take string expressions instead of code expressions. Because they are late-bound strings I can dynamically construct them. For example: I could provide UI to an end-user business analyst using my application that enables them to construct queries on their own (including arbitrary conditional clauses).

link|improve this answer
Does this work? I get this : Error 28 Overload resolution failed because no accessible 'OrderBy' can be called with these arguments: Data type(s) of the type parameter(s) cannot be inferred from these arguments. Specifying the data type(s) explicitly might correct this error. I can't see 'String' as a parameter option in the .OrderBy clause. – JohnnyBizzle May 31 '11 at 8:11
@JohnnyBizzle - It works. I use it in many projects. Double check that the dynamic.cs is in your project and that you have it referenced properly in your using declarations. – Geoff May 31 '11 at 10:43
feedback

Dynamic Linq is one way to go.

It may be overkill for your scenario. Consider:

IQueryable<Customer> query = db.Customers;

if (searchingByName)
{
  query = query.Where(c => c.Name.StartsWith(someletters));
}
if (searchingById)
{
  query = query.Where(c => c.Id == Id);
}
if (searchingByDonuts)
{
  query = query.Where(c => c.Donuts.Any(d => !d.IsEaten));
}
query = query.OrderBy(c => c.Name);
List<Customer> = query.Take(10).ToList();
link|improve this answer
+1 works well and is easy to maintain. – FreshCode Jan 28 '11 at 23:11
What about sorting? – JohnnyBizzle May 31 '11 at 8:14
feedback

something like this?

var myList = new List<string> { "a","b","c" };
var items = from item in db.Items
            where myList.Contains(item.Name)
            select item;

that would create a sql statement like

SELECT * FROM Items [t0] where Name IN ('a','b','c')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.