郡のリストにある参加者を取得するにはどうすればよいですか? var 郡の郡を取得してから、郡のリストにある CountyOfParticipationId を持つすべての参加者を取得したいと考えています。
if (collaborationId != null)
{
var counties = (from c in db.CountyCollaborations
where c.CollaborationId == collaborationId
select c).ToList();
participants = participants.Where(p => p.CountyOfParticipationId in counties);
}