Here is some code:
//all possible search terms of interest
searchTerms = from s in dc.SearchTerms
select s.term;
//all possible results
var results = from r in dc.Data
select r.hyperlinks;
I want to perform an operation where I get all “r.hyperlinks” that contains s.term.
It is something like r.hyperlinks.Contains(s.term). How can I do this?
It’s almost as you wrote it in english:
That’s all!
You can put any condition you might come up inside a where clause. Actually, you can put whatever returns a
boolean.