3

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

user161433
  • 4,419
  • 5
  • 32
  • 55

3 Answers3

3

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

DamienG
  • 6,575
  • 27
  • 43
1

I think that is a server option.

Anyways, if it does not (in EF), nothing stops you from calling the required SQL directly. :)

leppie
  • 115,091
  • 17
  • 196
  • 297
1

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.

Pure.Krome
  • 84,693
  • 113
  • 396
  • 647