Is there any better search method instead of string.Contains("keyword") using asp.net?
Posted
by Mike108
on Stack Overflow
See other posts from Stack Overflow
or by Mike108
Published on 2010-04-03T06:57:44Z
Indexed on
2010/04/03
7:03 UTC
Read the original article
Hit count: 297
For example, the users of our app want to search products by entering a keyword of productName.
The Products table of the sql server database contains about 10 million records.
Is there any better and higher-performance search method implement instead of productName.Contains("keyword") using asp.net C# ?
© Stack Overflow or respective owner