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
Use Regex.IsMatch in your where statement or for a more simpler version without wildcards etc.:
Regex.IsMatch
customers.where(c=>c.Name.Contains("john"));