vote up 13 vote down star
14

I wonder if is possible to use FTS with LINQ using .NET Framework 3.5. I'm searching around the documentation that I didn't find anything useful yet.

Does anyone have any experience on this?

flag

73% accept rate

4 Answers

vote up 13 vote down check

Yes in a way but you have to create SQL server function first and call that as by default LINQ will use a like.

See this blog post which will explain how.

link|flag
vote up 5 vote down

I don't believe so. You can use 'contains' on a field, but it only generates a LIKE query. If you want to use full text I would recommend using a stored proc to do the query then pass it back to LINQ

link|flag
vote up 5 vote down

No. Full text search is not supported by LINQ.

That said, you can use a stored procedure that utilizes FTS and have the LINQ query pull data from that.

link|flag
vote up 4 vote down

No, full text searching is something very specific to sql server (in which text is indexed by words, and queries hit this index versus traversing a character array). Linq does not support this, any .Contains() calls will hit the un-managed string functions but will not benefit from indexing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.