Queryable.Average Method (System.Linq)

Switch View :
ScriptFree
.NET Framework Class Library
Queryable.Average Method

Computes the average of a sequence of numeric values.

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 method Static member Average(IQueryable(Of Decimal)) Computes the average of a sequence of Decimal values.
Public method Static member Average(IQueryable(Of Nullable(Of Decimal))) Computes the average of a sequence of nullable Decimal values.
Public method Static member Average(IQueryable(Of Double)) Computes the average of a sequence of Double values.
Public method Static member Average(IQueryable(Of Nullable(Of Double))) Computes the average of a sequence of nullable Double values.
Public method Static member Average(IQueryable(Of Int32)) Computes the average of a sequence of Int32 values.
Public method Static member Average(IQueryable(Of Nullable(Of Int32))) Computes the average of a sequence of nullable Int32 values.
Public method Static member Average(IQueryable(Of Int64)) Computes the average of a sequence of Int64 values.
Public method Static member Average(IQueryable(Of Nullable(Of Int64))) Computes the average of a sequence of nullable Int64 values.
Public method Static member Average(IQueryable(Of Nullable(Of Single))) Computes the average of a sequence of nullable Single values.
Public method Static member Average(IQueryable(Of Single)) Computes the average of a sequence of Single values.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Decimal))) Computes the average of a sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Double))) Computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Int32))) Computes the average of a sequence of Int32 values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Int64))) Computes the average of a sequence of Int64 values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Nullable(Of Decimal)))) Computes the average of a sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Nullable(Of Double)))) Computes the average of a sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Nullable(Of Int32)))) Computes the average of a sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Nullable(Of Int64)))) Computes the average of a sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Nullable(Of Single)))) Computes the average of a sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence.
Public method Static member Average(Of TSource)(IQueryable(Of TSource), Expression(Of Func(Of TSource, Single))) Computes the average of a sequence of Single values that is obtained by invoking a projection function on each element of the input sequence.
Top
See Also

Reference