LINQ Query: How to use WHERE to see if object exists in other query -



LINQ Query: How to use WHERE to see if object exists in other query -

i using linq query various collections of info , trying build linq query checks query form results, illustration code looks this:

dim myfilmresults = _ myfilm in myfilms myfilm.cert (from mycert string in mycertificationfilters select mycert) select myfilm

so explain, wish homecoming collection of films included in mycertificationfilters collection.

any help appreciated!

:)

--edit: need walk away computer , think trying achieve! can accomplish simple bring together below:

dim myfilmresults = _ myfilm in myfilms bring together cert in mycertificationfilters on myfilm.cert equals cert select myfilm

thanks!

linq-to-objects

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -