If I have an IEnumerable where ClassA exposes an ID property of type long. Is it possible to use a Linq query to get all instances of ClassA with ID belonging to a second IE
A simple way would be:
IEnumerable result = original.Where(a => idsToFind.contains(a.ID));