I\'m constructing a linq query that will check is a string in the DB contains any of the strings in a list of strings.
Something like.
query = query.Whe
I've done something like this before:
var myList = new List(); myList.Add("One"); myList.Add("Two"); var matches = query.Where(x => myList.Any(y => x.tags.Contains(y)));