Implementing Dynamic Searching Using LINQ
A common requirement in forms-over-data applications is that users be able to search by any combination of fields to construct a dynamic query at run time. For example, the search feature in this application allows the user to find all records that meet criteria defined on multiple columns: LINQ makes it easy to write po...