Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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");
share|improve this question
Any is more readable and is normally more efficient since it can use EXISTS. But in Linq-To-Entities you should look at the generated sql. Sometimes Count seems to be faster. For Linq-To-Objects always use Any. – Tim Schmelter Nov 22 '12 at 11:19
Thanks for the useful links. – Sampath Nov 22 '12 at 15:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.