I have a scenario where I need to search for cars by keywords using one search field. Keywords may refer to any of the attributes of a car, for example. brand or model or body style. The database has a table called "Car" with foreign keys that reference tables that represent models or make or body style.
What would be the best way to do this? In particular, how do I get a request from a user (it is necessary to maintain an exact search for a phrase, or, and) and how do I really perform a search.
I am using SQL Server and ASP.NET 3.5 (data access using LINQ)
source
share