The users type in a textbox, keywords to look for in a travel destination. Sometimes, they just type “hot”, sometimes “hot humid stormy”, etc.
This code works for a single keyword:
where d.Element("Description").Value.Contains(textBox1.Text)
How do I revise the code to build the query so that it works for any number of keywords? Note that all the keywords typed in the textbox must match.
I presume you mean to search if any of the entries applies: