Quantifier and Aggregation Operations

Learn the basics of quantifying and aggregation operations in LINQ.

Overview

In this lesson, we’ll review quantifier and aggregation LINQ operations. These operations are not applicable using the query syntax. Therefore, all the examples in this lesson are done with query methods.

Quantifier operations

Quantifier operations return a boolean value indicating whether any or all of the elements in a source sequence satisfy a given condition. Typically these operations are executed immediately. The Any and All operations are examples of quantifier operators. Below is an illustration. ...