How can I do something like this:
customers.where(c=>c.Name **like** \"john\");
I know this isn\'t possible but I was wondering how can
Here is my code :
string s="somethings"; customers.Where(c => c.Name != null && c.Name.ToLower().Contains(s.ToLower()));
Somethings like that.