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
like this:
List list = new List(); list.Add("One"); list.Add("Two"); var result = query.Where(x => list.Contains(x.tags));