Hi
I want to return all the strings from startValue (e.g. A) to endValue (e.g. M).
By using LIKE we can do it like this - LIKE '[A-M]%'
How can we write the same LIKE query in LINQ.
Thanks
return Find(m => m.CreatedDate >= startDate && m.CreatedDate <= endDate
&& m.Marc21Id == 15
&& m.Name != null
&& m.Name.StartsWith(startValue)
&& m.Name.EndsWith(endValue);