Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Linq query which looks as follows:

return this._alarmObjectAlarmViolationList
   .Where(row => row.ObjectId == subId)
   .Where(row => row.AlarmInternalId == "WECO #1 (StdDev > UCL)")
   .Where(row => row.PositionInSequence == row.SequenceCount)
   .Any();

Is this functionaly any different, or any more or less efficient, than putting the Where predicates inside the Any() statement?

This is a Linq to Objects query.

Thank you.

share|improve this question
Which kind of linq is this? linq-to-objects, or one of the IQueryable based variants? – CodesInChaos Aug 22 '12 at 12:00
Updated my question - thank you. – Randy Minder Aug 22 '12 at 12:27

1 Answer

up vote 6 down vote accepted

No. There is no real difference in execution speed between .Where(predicate).Any() and Any(predicate).

However, using only Any(predicate) internally requires less objects to be created.

My suggestion is that you use the variant that is more readable. With many complicated predicates, I think it is easier to read when you use Where - as in your sample.

Please note: My answer only applies to LINQ to Objects.

share|improve this answer
Thank you. This is Linq to Objects. – Randy Minder Aug 22 '12 at 12:26

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.