Here's a simplified problem I'm having.
I have :
countries= EntityCollection<CountryEntity>
from one data source populated.
I need to get a list of States from another data source that match state.CountryFK = country.CountryPK in Linq
This fails:
var q = (ILLBLGenProQuery) (from x in linq.SecondsDataSourceCities
where countries.First(e=>e.CountryPK ==x.CountryFK )!=null
select x);
How do I do an 'in' clause?