Reputation: 4519
Just wanted to know if Linq to entities 4.0 have fulltext search capabilities? Thanks
Upvotes: 3
Views: 349
Reputation: 86957
I've been using custom stored procedures for my Sql Server 2008 FullText capabilities (eg. CONTAINS(.. .. )
. Of course, EF can call stored procedures.
This is an option you can leverage off. Works great for L2S and/or EF.
HTH.
Upvotes: 1
Reputation: 6665
There are no specific operators or support for full text directly in EF v4.0.
Upvotes: 3
Reputation: 117240
I think that is a server option.
Anyways, if it does not (in EF), nothing stops you from calling the required SQL directly. :)
Upvotes: 1