Is there any way to compare strings in a C# LINQ expression similar to SQL\'s LIKE operator?
LIKE
Suppose I have a string list. On this list I want to search
.Where(e => e.Value.StartsWith("BALTIMORE"))
This works like "LIKE" of SQL...