Queryable.Average 方法

定義

計算數值序列的平均值。

多載

Average(IQueryable<Single>)

計算 Single 值序列的平均值。

Average(IQueryable<Nullable<Int64>>)

計算可為 Null 之 Int64 值序列的平均值。

Average(IQueryable<Nullable<Int32>>)

計算可為 Null 之 Int32 值序列的平均值。

Average(IQueryable<Nullable<Double>>)

計算可為 Null 之 Double 值序列的平均值。

Average(IQueryable<Nullable<Single>>)

計算可為 Null 之 Single 值序列的平均值。

Average(IQueryable<Int64>)

計算 Int64 值序列的平均值。

Average(IQueryable<Int32>)

計算 Int32 值序列的平均值。

Average(IQueryable<Double>)

計算 Double 值序列的平均值。

Average(IQueryable<Decimal>)

計算 Decimal 值序列的平均值。

Average(IQueryable<Nullable<Decimal>>)

計算可為 Null 之 Decimal 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>)

計算在輸入序列中各項目上叫用投影函式後所取得之 Single 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>)

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Single 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>)

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Int64 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>)

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Double 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>)

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Int32 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>)

計算在輸入序列中各項目上叫用投影函式後所取得之 Int64 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>)

計算在輸入序列中各項目上叫用投影函式後所取得之 Int32 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>)

計算在輸入序列中各項目上叫用投影函式後所取得之 Double 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>)

計算在輸入序列中各項目上叫用投影函式後所取得之 Decimal 值序列的平均值。

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>)

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Decimal 值序列的平均值。

Average(IQueryable<Single>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算 Single 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static float Average(System::Linq::IQueryable<float> ^ source);
public static float Average (this System.Linq.IQueryable<float> source);
static member Average : System.Linq.IQueryable<single> -> single
<Extension()>
Public Function Average (source As IQueryable(Of Single)) As Single

參數

source
IQueryable<Single>

要計算平均值的 Single 值序列。

傳回

值序列的平均。

例外狀況

sourcenull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Int32>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

List<int> grades = new List<int> { 78, 92, 100, 37, 81 };

double average = grades.AsQueryable().Average();

Console.WriteLine("The average grade is {0}.", average);

// This code produces the following output:
//
// The average grade is 77.6.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})

Dim average As Double = grades.AsQueryable().Average()

MsgBox(String.Format("The average grade is {0}.", average))

' This code produces the following output:
'
' The average grade is 77.6.

備註

方法 Average(IQueryable<Single>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Single>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Single>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Nullable<Int64>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算可為 Null 之 Int64 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static Nullable<double> Average(System::Linq::IQueryable<Nullable<long>> ^ source);
public static double? Average (this System.Linq.IQueryable<long?> source);
static member Average : System.Linq.IQueryable<Nullable<int64>> -> Nullable<double>
<Extension()>
Public Function Average (source As IQueryable(Of Nullable(Of Long))) As Nullable(Of Double)

參數

source
IQueryable<Nullable<Int64>>

要計算其平均值的可為 Null 之 Int64 值的序列。

傳回

值序列的平均值,或者,如果來源序列是空的或只包含 null 值,則為 null

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Nullable<Int64>>) 來計算值序列的平均值。

long?[] longs = { null, 10007L, 37L, 399846234235L };

double? average = longs.AsQueryable().Average();

Console.WriteLine("The average is {0}.", average);

// This code produces the following output:
//
// The average is 133282081426.333.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}

Dim average As Nullable(Of Double) = longs.AsQueryable().Average()

MsgBox(String.Format("The average is {0}.", average))

' This code produces the following output:
'
' The average is 133282081426.333.

備註

方法 Average(IQueryable<Nullable<Int64>>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Nullable<Int64>>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Nullable<Int64>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Nullable<Int32>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算可為 Null 之 Int32 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static Nullable<double> Average(System::Linq::IQueryable<Nullable<int>> ^ source);
public static double? Average (this System.Linq.IQueryable<int?> source);
static member Average : System.Linq.IQueryable<Nullable<int>> -> Nullable<double>
<Extension()>
Public Function Average (source As IQueryable(Of Nullable(Of Integer))) As Nullable(Of Double)

參數

source
IQueryable<Nullable<Int32>>

要計算其平均值的可為 Null 之 Int32 值的序列。

傳回

值序列的平均值,或者,如果來源序列是空的或只包含 null 值,則為 null

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Nullable<Int64>>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

long?[] longs = { null, 10007L, 37L, 399846234235L };

double? average = longs.AsQueryable().Average();

Console.WriteLine("The average is {0}.", average);

// This code produces the following output:
//
// The average is 133282081426.333.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}

Dim average As Nullable(Of Double) = longs.AsQueryable().Average()

MsgBox(String.Format("The average is {0}.", average))

' This code produces the following output:
'
' The average is 133282081426.333.

備註

方法 Average(IQueryable<Nullable<Int32>>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Nullable<Int32>>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Nullable<Int32>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Nullable<Double>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算可為 Null 之 Double 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static Nullable<double> Average(System::Linq::IQueryable<Nullable<double>> ^ source);
public static double? Average (this System.Linq.IQueryable<double?> source);
static member Average : System.Linq.IQueryable<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Average (source As IQueryable(Of Nullable(Of Double))) As Nullable(Of Double)

參數

source
IQueryable<Nullable<Double>>

要計算其平均值的可為 Null 之 Double 值的序列。

傳回

值序列的平均值,或者,如果來源序列是空的或只包含 null 值,則為 null

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Nullable<Int64>>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

long?[] longs = { null, 10007L, 37L, 399846234235L };

double? average = longs.AsQueryable().Average();

Console.WriteLine("The average is {0}.", average);

// This code produces the following output:
//
// The average is 133282081426.333.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}

Dim average As Nullable(Of Double) = longs.AsQueryable().Average()

MsgBox(String.Format("The average is {0}.", average))

' This code produces the following output:
'
' The average is 133282081426.333.

備註

方法 Average(IQueryable<Nullable<Double>>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Nullable<Double>>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Nullable<Double>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Nullable<Single>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算可為 Null 之 Single 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static Nullable<float> Average(System::Linq::IQueryable<Nullable<float>> ^ source);
public static float? Average (this System.Linq.IQueryable<float?> source);
static member Average : System.Linq.IQueryable<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Average (source As IQueryable(Of Nullable(Of Single))) As Nullable(Of Single)

參數

source
IQueryable<Nullable<Single>>

要計算其平均值的可為 Null 之 Single 值的序列。

傳回

值序列的平均值,或者,如果來源序列是空的或只包含 null 值,則為 null

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Nullable<Int64>>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

long?[] longs = { null, 10007L, 37L, 399846234235L };

double? average = longs.AsQueryable().Average();

Console.WriteLine("The average is {0}.", average);

// This code produces the following output:
//
// The average is 133282081426.333.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}

Dim average As Nullable(Of Double) = longs.AsQueryable().Average()

MsgBox(String.Format("The average is {0}.", average))

' This code produces the following output:
'
' The average is 133282081426.333.

備註

方法 Average(IQueryable<Nullable<Single>>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Nullable<Single>>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Nullable<Single>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Int64>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算 Int64 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static double Average(System::Linq::IQueryable<long> ^ source);
public static double Average (this System.Linq.IQueryable<long> source);
static member Average : System.Linq.IQueryable<int64> -> double
<Extension()>
Public Function Average (source As IQueryable(Of Long)) As Double

參數

source
IQueryable<Int64>

要計算平均值的 Int64 值序列。

傳回

值序列的平均。

例外狀況

sourcenull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Int32>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

List<int> grades = new List<int> { 78, 92, 100, 37, 81 };

double average = grades.AsQueryable().Average();

Console.WriteLine("The average grade is {0}.", average);

// This code produces the following output:
//
// The average grade is 77.6.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})

Dim average As Double = grades.AsQueryable().Average()

MsgBox(String.Format("The average grade is {0}.", average))

' This code produces the following output:
'
' The average grade is 77.6.

備註

方法 Average(IQueryable<Int64>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Int64>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Int64>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Int32>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算 Int32 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static double Average(System::Linq::IQueryable<int> ^ source);
public static double Average (this System.Linq.IQueryable<int> source);
static member Average : System.Linq.IQueryable<int> -> double
<Extension()>
Public Function Average (source As IQueryable(Of Integer)) As Double

參數

source
IQueryable<Int32>

要計算平均值的 Int32 值序列。

傳回

值序列的平均。

例外狀況

sourcenull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Int32>) 來計算值序列的平均值。

List<int> grades = new List<int> { 78, 92, 100, 37, 81 };

double average = grades.AsQueryable().Average();

Console.WriteLine("The average grade is {0}.", average);

// This code produces the following output:
//
// The average grade is 77.6.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})

Dim average As Double = grades.AsQueryable().Average()

MsgBox(String.Format("The average grade is {0}.", average))

' This code produces the following output:
'
' The average grade is 77.6.

備註

方法 Average(IQueryable<Int32>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Int32>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Int32>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Double>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算 Double 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static double Average(System::Linq::IQueryable<double> ^ source);
public static double Average (this System.Linq.IQueryable<double> source);
static member Average : System.Linq.IQueryable<double> -> double
<Extension()>
Public Function Average (source As IQueryable(Of Double)) As Double

參數

source
IQueryable<Double>

要計算平均值的 Double 值序列。

傳回

值序列的平均。

例外狀況

sourcenull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Int32>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

List<int> grades = new List<int> { 78, 92, 100, 37, 81 };

double average = grades.AsQueryable().Average();

Console.WriteLine("The average grade is {0}.", average);

// This code produces the following output:
//
// The average grade is 77.6.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})

Dim average As Double = grades.AsQueryable().Average()

MsgBox(String.Format("The average grade is {0}.", average))

' This code produces the following output:
'
' The average grade is 77.6.

備註

方法 Average(IQueryable<Double>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Double>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Double>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Decimal>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算 Decimal 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Decimal Average(System::Linq::IQueryable<System::Decimal> ^ source);
public static decimal Average (this System.Linq.IQueryable<decimal> source);
static member Average : System.Linq.IQueryable<decimal> -> decimal
<Extension()>
Public Function Average (source As IQueryable(Of Decimal)) As Decimal

參數

source
IQueryable<Decimal>

要計算平均值的 Decimal 值序列。

傳回

值序列的平均。

例外狀況

sourcenull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Int32>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

List<int> grades = new List<int> { 78, 92, 100, 37, 81 };

double average = grades.AsQueryable().Average();

Console.WriteLine("The average grade is {0}.", average);

// This code produces the following output:
//
// The average grade is 77.6.
Dim grades As New List(Of Integer)(New Integer() {78, 92, 100, 37, 81})

Dim average As Double = grades.AsQueryable().Average()

MsgBox(String.Format("The average grade is {0}.", average))

' This code produces the following output:
'
' The average grade is 77.6.

備註

方法 Average(IQueryable<Decimal>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Decimal>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Decimal>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average(IQueryable<Nullable<Decimal>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算可為 Null 之 Decimal 值序列的平均值。

public:
[System::Runtime::CompilerServices::Extension]
 static Nullable<System::Decimal> Average(System::Linq::IQueryable<Nullable<System::Decimal>> ^ source);
public static decimal? Average (this System.Linq.IQueryable<decimal?> source);
static member Average : System.Linq.IQueryable<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Average (source As IQueryable(Of Nullable(Of Decimal))) As Nullable(Of Decimal)

參數

source
IQueryable<Nullable<Decimal>>

要計算其平均值的可為 Null 之 Decimal 值的序列。

傳回

值序列的平均值,或者,如果來源序列是空的或只包含 null 值,則為 null

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Average(IQueryable<Nullable<Int64>>) 來計算值序列的平均值。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請將來源序列的元素取代為適當數值類型的元素。

long?[] longs = { null, 10007L, 37L, 399846234235L };

double? average = longs.AsQueryable().Average();

Console.WriteLine("The average is {0}.", average);

// This code produces the following output:
//
// The average is 133282081426.333.
Dim longs() As Nullable(Of Long) = {Nothing, 10007L, 37L, 399846234235L}

Dim average As Nullable(Of Double) = longs.AsQueryable().Average()

MsgBox(String.Format("The average is {0}.", average))

' This code produces the following output:
'
' The average is 133282081426.333.

備註

方法 Average(IQueryable<Nullable<Decimal>>) 會產生 , MethodCallExpression 表示呼叫 Average(IQueryable<Nullable<Decimal>>) 本身。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average(IQueryable<Nullable<Decimal>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中 source值的平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得之 Single 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static float Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, float> ^> ^ selector);
public static float Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,float>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, single>> -> single
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Single))) As Single

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Single>>

要套用到每個項目的投影函式。

傳回

值序列的平均。

例外狀況

sourceselectornull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 來計算類型 String值序列的平均String長度。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請變更函 selector 式的主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型 Expression<TDelegate> 參數,其類型自變數為其中一個 Func<T,TResult> 型別。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) 會產生 , MethodCallExpression 表示 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算在叫用每個值之後selector的值source平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Single 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static Nullable<float> Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<float>> ^> ^ selector);
public static float? Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,float?>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<single>>> -> Nullable<single>
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Single)))) As Nullable(Of Single)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Nullable<Single>>>

要套用到每個項目的投影函式。

傳回

值序列的平均值;如果 source 序列是空的或是只包含 null 值,則為 null

例外狀況

sourceselectornull

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 來計算類型 String值序列的平均String長度。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請變更函 selector 式的主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型 Expression<TDelegate> 參數,其類型自變數為其中一個 Func<T,TResult> 型別。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) 會產生 , MethodCallExpression 表示 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算在叫用每個值之後selector的值source平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Int64 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static Nullable<double> Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<long>> ^> ^ selector);
public static double? Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,long?>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<int64>>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Long)))) As Nullable(Of Double)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Nullable<Int64>>>

要套用到每個項目的投影函式。

傳回

值序列的平均值;如果 source 序列是空的或是只包含 null 值,則為 null

例外狀況

sourceselectornull

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 來計算類型 String值序列的平均String長度。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請變更函 selector 式的主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) 會產生 , MethodCallExpression 表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是在叫用selector每個值之後,計算 中的source值平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Double 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static Nullable<double> Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<double>> ^> ^ selector);
public static double? Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,double?>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<double>>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Double)))) As Nullable(Of Double)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Nullable<Double>>>

要套用到每個項目的投影函式。

傳回

值序列的平均值;如果 source 序列是空的或是只包含 null 值,則為 null

例外狀況

sourceselectornull

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) ,以類型的String值序列計算平均String長度。

注意

此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector 主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) 會產生 , MethodCallExpression 表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是在叫用selector每個值之後,計算 中的source值平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Int32 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static Nullable<double> Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<int>> ^> ^ selector);
public static double? Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int?>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<int>>> -> Nullable<double>
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Integer)))) As Nullable(Of Double)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Nullable<Int32>>>

要套用到每個項目的投影函式。

傳回

值序列的平均值;如果 source 序列是空的或是只包含 null 值,則為 null

例外狀況

sourceselectornull

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) ,以類型的String值序列計算平均String長度。

注意

此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector 主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) 會產生 , MethodCallExpression 表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是在叫用selector每個值之後,計算 中的source值平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得之 Int64 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static double Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, long> ^> ^ selector);
public static double Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,long>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, int64>> -> double
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Long))) As Double

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Int64>>

要套用到每個項目的投影函式。

傳回

值序列的平均。

例外狀況

sourceselectornull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) ,以類型的String值序列計算平均String長度。

注意

此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector 主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) 會產生 , MethodCallExpression 表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是在叫用selector每個值之後,計算 中的source值平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得之 Int32 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static double Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, int> ^> ^ selector);
public static double Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, int>> -> double
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Integer))) As Double

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Int32>>

要套用到每個項目的投影函式。

傳回

值序列的平均。

例外狀況

sourceselectornull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) ,以類型的String值序列計算平均String長度。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 會產生 , MethodCallExpression 表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是在叫用selector每個值之後,計算 中的source值平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得之 Double 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static double Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, double> ^> ^ selector);
public static double Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,double>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, double>> -> double
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Double))) As Double

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Double>>

要套用到每個項目的投影函式。

傳回

值序列的平均。

例外狀況

sourceselectornull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) ,以類型的String值序列計算平均String長度。

注意

此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector 主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 會產生 , MethodCallExpression 表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是在叫用selector每個值之後,計算 中的source值平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得之 Decimal 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Decimal Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, System::Decimal> ^> ^ selector);
public static decimal Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,decimal>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, decimal>> -> decimal
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Decimal))) As Decimal

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

用來計算平均值的值序列。

selector
Expression<Func<TSource,Decimal>>

要套用到每個項目的投影函式。

傳回

值序列的平均。

例外狀況

sourceselectornull

source 沒有包含任何項目。

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) ,以類型的String值序列計算平均String長度。

注意

此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector 主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) 會產生 , MethodCallExpression 表示 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算在叫用每個值之後selector的值source平均值。

適用於

Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

計算在輸入序列中各項目上叫用投影函式後所取得可為 Null 之 Decimal 值序列的平均值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static Nullable<System::Decimal> Average(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<System::Decimal>> ^> ^ selector);
public static decimal? Average<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,decimal?>> selector);
static member Average : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<decimal>>> -> Nullable<decimal>
<Extension()>
Public Function Average(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Decimal)))) As Nullable(Of Decimal)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要計算平均值的值序列。

selector
Expression<Func<TSource,Nullable<Decimal>>>

要套用到每個項目的投影函式。

傳回

值序列的平均值;如果 source 序列是空的或是只包含 null 值,則為 null

例外狀況

sourceselectornull

範例

下列程式代碼範例示範如何使用 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 來計算類型 String值序列的平均String長度。

注意

此程式代碼範例使用方法的多載,與本文描述的特定多載不同。 若要將範例延伸至本文所描述的多載,請變更函 selector 式的主體。

string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };

// Determine the average string length in the array.
double average = fruits.AsQueryable().Average(s => s.Length);

Console.WriteLine("The average string length is {0}.", average);

// This code produces the following output:
//
// The average string length is 6.5.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Determine the average string length in the array.
Dim average As Double = fruits.AsQueryable().Average(Function(s) s.Length)

MsgBox(String.Format("The average string length is {0}.", average))

' This code produces the following output:
'
' The average string length is 6.5.

備註

這個方法至少有一個類型 Expression<TDelegate> 參數,其類型自變數為其中一個 Func<T,TResult> 型別。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) 會產生 , MethodCallExpression 表示 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpressionExecute<TResult>(Expression) 參數的 屬性所Provider表示的 source 方法IQueryProvider

執行表示呼叫 Average<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算在叫用每個值之後selector的值source平均值。

適用於