So, I\'m trying to return a collection of People whose ID is contained within a locally created collection of ids ( IQueryable)
When I specify \"locally created col
I was struggling with this problem also. Solved my problem with using Any() instead
people.Where(x => ids.Any(id => id == x.ID))