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
var t = new List { "a", "b", "c" };
var y = "a b d";
var res = y.Count(x => t.Contains(x.ToString()));