vote up 1 vote down star
2

I'm implementing a search feature for an app that uses entity framework. There are several optional fields for searching a particular database table/view. What is the best way to implement such a search with EF? Stored procedure? Or can it be done (realistically) using Linq only?

flag

4 Answers

vote up 1 vote down check

You should be able to do this in LINQ easily enough. Always remember that LINQ queries are chainable:

var query = (from p in products
             select p);

if(field1 != null)
{
    query = (from p in query
             where p.Field1 = field1
             select p);
}

if(field2 != null)
{
    query = (from p in query
             where p.Field2 = field2
             select p);
}

foreach(Product p in query)
{
   // ...
}
link|flag
Will the original definition of "query" cause "select * from products" to be executed? – Jeremy Aug 25 at 17:57
No. LINQ queries are not enumerated (i.e. the results are not retrieved from the DB) until the last possible moment. The calls just build up, then when you need to access a specific element in the result (or the count, etc.), the whole assembled query is retrieved from the DB. – kevingessner Aug 25 at 18:02
vote up 1 vote down

A common pattern for handling optional search parameters is to do something like this:

string p = null;
var q = from o in dataContext.Products
    where ((o.Name == p) || (p == null))
    select o;
link|flag
vote up 0 vote down

You might take a look at this article about dynamically generating lambda expression objects to do it.

link|flag
vote up 1 vote down

What Loren says will work (+1). Or use Microsoft Dynamic LINQ. It works fine with L2E.

link|flag

Your Answer

Get an OpenID
or

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