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 I have something similar.
customers.Where(c => c.Name.Contains("john"));
1.4m articles
1.4m replys
5 comments
57.0k users