0

I have a table of news, and I want to allow the user to search in it. Something like this:

News.Where(p => p.Title == user_query);

...that will allow more advanced queries, like Differences Between "Linq to Objects" and "Linq to SQL" queries, etc. Also it should be case-insensitive.

GEOCHET
  • 21,119
  • 15
  • 74
  • 98
Alon Gubkin
  • 56,458
  • 54
  • 195
  • 288
  • Possible duplicate: http://stackoverflow.com/questions/224475/is-it-possible-to-use-full-text-search-fts-with-linq – Mark Byers Feb 07 '10 at 14:54

1 Answers1

0

From John's answer here:

LINQ to SQL does not support Full Text Search, but you can write a stored procedure and call that. See this blog post for more details.

Community
  • 1
  • 1
Mark Byers
  • 811,555
  • 193
  • 1,581
  • 1,452