I am working on Entity Framework 4.1 and c#.
Which one is the most suitable for Best Performance ?
If So Why (any links for additional readings) ?
bool isBoarding = invoice.Allocations.Where(a => a.Service.Key == "boarding").Count() > 0;
OR
bool isBoarding = invoice.Allocations.Any(a => a.Service.Key == "boarding");
Anyis more readable and is normally more efficient since it can useEXISTS. But in Linq-To-Entities you should look at the generated sql. SometimesCountseems to be faster. For Linq-To-Objects always useAny. – Tim Schmelter Nov 22 '12 at 11:19