Can any body tell me how can I use a LIKE operator using System.Linq.Dynamic?
I need to add more than one LIKE expression in my dynamic where query
LIKE
You can use .StartsWith(), .EndsWith() and .Contains() which will generate LIKE SQL with trailing, leading and surrounding wildcards respectively. Don't know of a way to generate a statement with an embedded wildcard tho.
.StartsWith(),
.EndsWith()
.Contains()