What is preventing entity framework from exposing the CONTAINS function as a function on SqlFunctions?
It seems like something like to this should be relatively trivial:
It seems like something like to this should be relatively trivial:
var results =
from x in context.Records
where SqlFunctions.Contains(x.Text,"full text query")
select x.Id;
If anyone has any ideas on how to mock a function similar to the SqlFunctions.Contains example above, I'd be happy to hear it.