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.

IQueryablebased variants? – CodesInChaos Aug 22 '12 at 12:00