Queryable.Aggregate Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

Applies an accumulator function over a sequence.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

  Name Description
Public methodStatic memberSupported by Silverlight for Windows Phone Aggregate<TSource>(IQueryable<TSource>, Expression<Func<TSource, TSource, TSource>>) Applies an accumulator function over a sequence.
Public methodStatic memberSupported by Silverlight for Windows Phone Aggregate<TSource, TAccumulate>(IQueryable<TSource>, TAccumulate, Expression<Func<TAccumulate, TSource, TAccumulate>>) Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.
Public methodStatic memberSupported by Silverlight for Windows Phone Aggregate<TSource, TAccumulate, TResult>(IQueryable<TSource>, TAccumulate, Expression<Func<TAccumulate, TSource, TAccumulate>>, Expression<Func<TAccumulate, TResult>>) Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value.

Top