I want to get a collection of Product entities where the product.Description property contains any of the words in a string array.
It would look something like this
Dim result = From p in products _ Where search.Any(Function(s) p.Description.Contains(s)) Select p