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?
I’m implementing a search feature for an app that uses entity framework. There are
Share
You should be able to do this in LINQ easily enough. Always remember that LINQ queries are chainable: