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?
|
2
|
|
|
|
|
|
You should be able to do this in LINQ easily enough. Always remember that LINQ queries are chainable:
|
||||
|
|
|
A common pattern for handling optional search parameters is to do something like this:
|
||
|
|
|
|
You might take a look at this article about dynamically generating lambda expression objects to do it. |
||
|
|
|
|
What Loren says will work (+1). Or use Microsoft Dynamic LINQ. It works fine with L2E. |
||
|
|
