I have a form with custom filters (combobox with column names, combobox with filter types and text box with value).
How can I dynamically add a user-defined filter to a LINQ query?
A typical query looks like this:
var qProducts = from p in db.Products where p.IsArchived == false order by p.ProductName select p;
I am using LINQ (IQuerable Toolkit) to access data in a SQL CE database.
TcKs Apr 28 '09 at 3:30 p.m. 2009-04-28 15:30
source share