.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 | |
|---|---|---|
|
Average(IQueryable(Of Decimal)) | Computes the average of a sequence of Decimal values. |
|
Average(IQueryable(Of Nullable(Of Decimal))) | Computes the average of a sequence of nullable Decimal values. |
|
Average(IQueryable(Of Double)) | Computes the average of a sequence of Double values. |
|
Average(IQueryable(Of Nullable(Of Double))) | Computes the average of a sequence of nullable Double values. |
|
Average(IQueryable(Of Int32)) | Computes the average of a sequence of Int32 values. |
|
Average(IQueryable(Of Nullable(Of Int32))) | Computes the average of a sequence of nullable Int32 values. |
|
Average(IQueryable(Of Int64)) | Computes the average of a sequence of Int64 values. |
|
Average(IQueryable(Of Nullable(Of Int64))) | Computes the average of a sequence of nullable Int64 values. |
|
Average(IQueryable(Of Nullable(Of Single))) | Computes the average of a sequence of nullable Single values. |
|
Average(IQueryable(Of Single)) | Computes the average of a sequence of Single values. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
See Also
