ho la query:Come eseguire una ricerca full text utilizzando Entity Framework 6
var query = DataContext.Fotos.Where(x => x.Pesquisa.Contais("myTerm")
L'SQL generato è:
SELEZIONA ... DA Fotos AS [Extent1] . WHERE [Extent1] [Pesquisa] COME N '% mytem%'
ma ho bisogno di usare:
SELEZIONA ... DA Fotos AS [Extent1] WHERE CONTAINS ([Extent1]. [Pesquisa], 'il mio mandato')
Come eseguire una ricerca a testo integrale utilizzando Entity Framework 6?
http://www.mikesdotnetting.com/article/298/implementing-sql-server-full-text-search-in-an-asp-net-mvc-web-application-with-entity-framework –