Follow the code:
var result= db.Table.Where(l => l.Field== value).ToList();
var search = "jOãO pAuLo";
result = result.Where(l => l.Example.Contains(search)).ToList();
It only works like this: João Paulo
, if that's the case joão Paulo
with the smallest j, it does not work anymore.
Any solution?