Hi,
I have a string "Word1 Word2" and I want to transform it to a query such as "Like '%Word1%Word2%'".
At the moment I have:
from t in Test
where t.Field.Contains("Word1 Word2")
How to do this in LINQ2SQL? Do I need to create two separate queries for this, can't I write it in the same statement?
Thx in advance