Personal Speech,
I have a problem that may be not doing correctly, I have a query in a description field of a table eg
Select description table where field like 'test% description'
How do I do this with entity framework? because if I use the term Contains
, it would make +/- as like '%teste descricao%'
, but that's not what I want.
Context.Item.Where(c=> c.descricao.Contains(termo)).toList();
Thanks for the help
Alex