I have a collection of objects called Gigs
.
Each Gig
has an Acts
collection.
Using Linq I want to query my collection of gigs to get all gigs where with an act that has an id of 7 for example.
act.id = 7;
So I started writting...
return from gig in qry
where gig.Acts //not sure how to do this bit
select gig;
But I'm not sure how you set conditions on the child collection called acts.
Any ideas?