Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Latest commit

 

History

History
35 lines (20 loc) · 1.27 KB

aggregates-3.md

File metadata and controls

35 lines (20 loc) · 1.27 KB

LINQ - Aggregators

Aggregator methods return a single value calculated from all the elements in a sequence. the aggregator methods include Count, Sum, Min, Max, Average, and Aggregate.

Find the maximun of a sequence of elements

This sample uses Max to get the highest number in an array.

Find the maximum of a projection

This sample uses Max to get the length of the longest word in an array.

Find the maximum in each group

This sample uses Max to get the most expensive price among each category's products.

Find all elements matching the maximum

This sample uses Max to get the products with the most expensive price in each category.

Next: Aggregates-Average » Previous: Aggregates-Min »

Home