I’m facing a problem concerning the results i need to get with a request.
this is what i use right now:
v = v.Where(i => i.Intitule.Contains(Intitule));
Intitule is a string containing what the user writes within a textbox.
For instance :
if intitule contains the following text : ” this is a comment”
and if a make a research using those keys: “this is”
It works perfectly
BUT if i make the research using ” this comment”
It’s not working anymore…
Basically, i need the research to be done on every words…
I hope i’m clear enough.
Thanks in advance
use
SqlMethods.Like: