3
Follows 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();
Only works that way: João Paulo
, if so joão Paulo
with letter j minusculo, no longer works.
Some solution ?
It’s another alternative tbm, this one works.
– Matheus Miranda