I want to search my db with different keys. According to the input, there may be 1 key to 10 keys. Is there a way to add OR/AND clauses to my Linq query dynamically?
You could try an .All clause to check all the keys:
where keys.All(key => feed.content.contains(key))