vote up 0 vote down star
1

Hi, I have form with user defined filters ( combobox with column names, combobox with filter types and textbox with value).

How can I dynamicly add user defined filter into LINQ query?

Typical query looks like:

var qProducts = from p in db.Products
    where p.IsArchived == false
    order by p.ProductName select p;

I'm using LINQ (IQuerable Toolkit) for access data in SQL CE database.

flag

58% accept rate
This might help: social.msdn.microsoft.com/Forums/en-US/… – Michael Haren Apr 28 at 15:49

2 Answers

vote up 2 vote down check

You might want to look at Dynamic LINQ from the VS2008 Samples. Then you could do something like:

var qProducts = db.Products
                  .Where( "IsArchived = {0}", archiveFilterValue )
                  .OrderBy( sortColumn + " " + sortDirection );
link|flag
+1, It looks good. I'll try it. – TcKs Apr 28 at 16:09
vote up 1 vote down

you can add each filter dynamically if it's needed, e.g.:

if (txtFilter1.Text!="") qProducts=qProducts.Where(s=>s.Name==txtFilter1.Text);
if (txtFilter2.Text!="") qProducts=qProducts.Where(s=>s.Field==txtFilter2.Text);
if (cboCombo1.SelectedValue!=0) qProducts=qProducts.Where(s=>s.price...

and so on

link|flag
I want to do it dynamicly with reuse on every filterable table. Writing "if" for every column in database is not practical. – TcKs Apr 28 at 15:59

Your Answer

Get an OpenID
or

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