Searching letters using LINQ
1 answer
Also check
StartsWith
EndsWith
another alternative
var query = from c in ctx.Customers
where SqlMethods.Like(c.City, "L_n%")
select c;
same question: Similar to LINQ to Object query
+1
a source to share