user161433
user161433

Reputation: 4519

Does Linq to Entities 4.0 have Fulltext capabilities?

Just wanted to know if Linq to entities 4.0 have fulltext search capabilities? Thanks

Upvotes: 3

Views: 349

Answers (3)

Pure.Krome
Pure.Krome

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

DamienG
DamienG

Reputation: 6665

There are no specific operators or support for full text directly in EF v4.0.

Upvotes: 3

leppie
leppie

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

Related Questions