Queryable.Sum 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算數值序列的總和。
多載
Sum(IQueryable<Decimal>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算 Decimal 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static System::Decimal Sum(System::Linq::IQueryable<System::Decimal> ^ source);
public static decimal Sum (this System.Linq.IQueryable<decimal> source);
static member Sum : System.Linq.IQueryable<decimal> -> decimal
<Extension()>
Public Function Sum (source As IQueryable(Of Decimal)) As Decimal
參數
- source
- IQueryable<Decimal>
要計算總和的 Decimal 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Decimal>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Decimal>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Decimal>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Double>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算 Double 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static double Sum(System::Linq::IQueryable<double> ^ source);
public static double Sum (this System.Linq.IQueryable<double> source);
static member Sum : System.Linq.IQueryable<double> -> double
<Extension()>
Public Function Sum (source As IQueryable(Of Double)) As Double
參數
- source
- IQueryable<Double>
要計算總和的 Double 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Double>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Double>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Double>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Int32>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算 Int32 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static int Sum(System::Linq::IQueryable<int> ^ source);
public static int Sum (this System.Linq.IQueryable<int> source);
static member Sum : System.Linq.IQueryable<int> -> int
<Extension()>
Public Function Sum (source As IQueryable(Of Integer)) As Integer
參數
- source
- IQueryable<Int32>
要計算總和的 Int32 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Int32>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Int32>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Int32>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Int64>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算 Int64 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static long Sum(System::Linq::IQueryable<long> ^ source);
public static long Sum (this System.Linq.IQueryable<long> source);
static member Sum : System.Linq.IQueryable<int64> -> int64
<Extension()>
Public Function Sum (source As IQueryable(Of Long)) As Long
參數
- source
- IQueryable<Int64>
要計算總和的 Int64 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Int64>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Int64>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Int64>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Nullable<Decimal>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算可為 Null 之 Decimal 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Sum(System::Linq::IQueryable<Nullable<System::Decimal>> ^ source);
public static decimal? Sum (this System.Linq.IQueryable<decimal?> source);
static member Sum : System.Linq.IQueryable<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Sum (source As IQueryable(Of Nullable(Of Decimal))) As Nullable(Of Decimal)
參數
- source
- IQueryable<Nullable<Decimal>>
要計算總和之可為 Null 的 Decimal 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Nullable<Decimal>>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Nullable<Decimal>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Nullable<Decimal>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Nullable<Double>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算可為 Null 之 Double 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Sum(System::Linq::IQueryable<Nullable<double>> ^ source);
public static double? Sum (this System.Linq.IQueryable<double?> source);
static member Sum : System.Linq.IQueryable<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Sum (source As IQueryable(Of Nullable(Of Double))) As Nullable(Of Double)
參數
- source
- IQueryable<Nullable<Double>>
要計算總和之可為 Null 的 Double 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Nullable<Double>>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Nullable<Double>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Nullable<Double>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Nullable<Int32>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算可為 Null 之 Int32 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Sum(System::Linq::IQueryable<Nullable<int>> ^ source);
public static int? Sum (this System.Linq.IQueryable<int?> source);
static member Sum : System.Linq.IQueryable<Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Sum (source As IQueryable(Of Nullable(Of Integer))) As Nullable(Of Integer)
參數
- source
- IQueryable<Nullable<Int32>>
要計算總和之可為 Null 的 Int32 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Nullable<Int32>>) 會產生 , MethodCallExpression 表示 Sum(IQueryable<Nullable<Int32>>) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 Sum(IQueryable<Nullable<Int32>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Nullable<Int64>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算可為 Null 之 Int64 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Sum(System::Linq::IQueryable<Nullable<long>> ^ source);
public static long? Sum (this System.Linq.IQueryable<long?> source);
static member Sum : System.Linq.IQueryable<Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Sum (source As IQueryable(Of Nullable(Of Long))) As Nullable(Of Long)
參數
- source
- IQueryable<Nullable<Int64>>
要計算總和之可為 Null 的 Int64 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
備註
方法 Sum(IQueryable<Nullable<Int64>>) 會產生 , MethodCallExpression 表示呼叫 Sum(IQueryable<Nullable<Int64>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum(IQueryable<Nullable<Int64>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Nullable<Single>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算可為 Null 之 Single 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Sum(System::Linq::IQueryable<Nullable<float>> ^ source);
public static float? Sum (this System.Linq.IQueryable<float?> source);
static member Sum : System.Linq.IQueryable<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Sum (source As IQueryable(Of Nullable(Of Single))) As Nullable(Of Single)
參數
- source
- IQueryable<Nullable<Single>>
要計算總和之可為 Null 的 Single 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
範例
下列程式代碼範例示範如何使用 Sum(IQueryable<Nullable<Single>>) 來加總序列的值。
float?[] points = { null, 0, 92.83F, null, 100.0F, 37.46F, 81.1F };
float? sum = points.AsQueryable().Sum();
Console.WriteLine("Total points earned: {0}", sum);
/*
This code produces the following output:
Total points earned: 311.39
*/
Dim points As Nullable(Of Single)() = {Nothing, 0, 92.83F, Nothing, 100.0F, 37.46F, 81.1F}
Dim sum As Nullable(Of Single) = points.AsQueryable().Sum()
MsgBox("Total points earned: " & sum)
'This code produces the following output:
'Total points earned: 311.39
備註
方法 Sum(IQueryable<Nullable<Single>>) 會產生 , MethodCallExpression 表示呼叫 Sum(IQueryable<Nullable<Single>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum(IQueryable<Nullable<Single>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum(IQueryable<Single>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算 Single 值序列的總和。
public:
[System::Runtime::CompilerServices::Extension]
static float Sum(System::Linq::IQueryable<float> ^ source);
public static float Sum (this System.Linq.IQueryable<float> source);
static member Sum : System.Linq.IQueryable<single> -> single
<Extension()>
Public Function Sum (source As IQueryable(Of Single)) As Single
參數
- source
- IQueryable<Single>
要計算總和的 Single 值序列。
傳回
序列中值的總合。
例外狀況
source
為 null
。
範例
下列程式代碼範例示範如何使用 Sum(IQueryable<Single>) 來加總序列的值。
List<float> numbers = new List<float> { 43.68F, 1.25F, 583.7F, 6.5F };
float sum = numbers.AsQueryable().Sum();
Console.WriteLine("The sum of the numbers is {0}.", sum);
/*
This code produces the following output:
The sum of the numbers is 635.13.
*/
Dim numbers As New List(Of Single)(New Single() {43.68F, 1.25F, 583.7F, 6.5F})
Dim sum As Single = numbers.AsQueryable().Sum()
MsgBox("The sum of the numbers is " & sum)
' This code produces the following output:
' The sum of the numbers is 635.13.
備註
方法 Sum(IQueryable<Single>) 會產生 , MethodCallExpression 表示呼叫 Sum(IQueryable<Single>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum(IQueryable<Single>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是它會傳回 中 source
值的總和。
適用於
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算在輸入序列中各項目上叫用投影函式後所取得之 Single 值序列的總和。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static float Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, float> ^> ^ selector);
public static float Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,float>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, single>> -> single
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Single))) As Single
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Single>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<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> Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<float>> ^> ^ selector);
public static float? Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,float?>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<single>>> -> Nullable<single>
<Extension()>
Public Function Sum(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>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Nullable<Single>>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<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<long> Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<long>> ^> ^ selector);
public static long? Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,long?>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<int64>>> -> Nullable<int64>
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Long)))) As Nullable(Of Long)
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Nullable<Int64>>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<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> Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<double>> ^> ^ selector);
public static double? Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,double?>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<double>>> -> Nullable<double>
<Extension()>
Public Function Sum(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>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Nullable<Double>>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<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<int> Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<int>> ^> ^ selector);
public static int? Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int?>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<int>>> -> Nullable<int>
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Nullable(Of Integer)))) As Nullable(Of Integer)
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Nullable<Int32>>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算在輸入序列中各項目上叫用投影函式後所取得之 Int64 值序列的總和。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static long Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, long> ^> ^ selector);
public static long Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,long>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, int64>> -> int64
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Long))) As Long
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Int64>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<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> Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, Nullable<System::Decimal>> ^> ^ selector);
public static decimal? Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,decimal?>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, Nullable<decimal>>> -> Nullable<decimal>
<Extension()>
Public Function Sum(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>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Nullable<Decimal>>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算在輸入序列中各項目上叫用投影函式後所取得之 Int32 值序列的總和。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, int> ^> ^ selector);
public static int Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, int>> -> int
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Integer))) As Integer
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Int32>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
計算在輸入序列中各項目上叫用投影函式後所取得之 Double 值序列的總和。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, double> ^> ^ selector);
public static double Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,double>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, double>> -> double
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Double))) As Double
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Double>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。
適用於
Sum<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 Sum(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, System::Decimal> ^> ^ selector);
public static decimal Sum<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,decimal>> selector);
static member Sum : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, decimal>> -> decimal
<Extension()>
Public Function Sum(Of TSource) (source As IQueryable(Of TSource), selector As Expression(Of Func(Of TSource, Decimal))) As Decimal
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
型別 TSource
的值序列。
- selector
- Expression<Func<TSource,Decimal>>
要套用到每個項目的投影函式。
傳回
預計值的總合。
例外狀況
source
或 selector
為 null
。
範例
下列程式代碼範例示範如何使用 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) 來加總序列的投影值。
注意
此程式代碼範例會使用與本文所描述之特定多載不同的 方法多載。 若要將範例擴充至本文所描述的多載,請變更函式的 selector
主體。
class Package
{
public string Company { get; set; }
public double Weight { get; set; }
}
public static void SumEx3()
{
List<Package> packages =
new List<Package>
{ new Package { Company = "Coho Vineyard", Weight = 25.2 },
new Package { Company = "Lucerne Publishing", Weight = 18.7 },
new Package { Company = "Wingtip Toys", Weight = 6.0 },
new Package { Company = "Adventure Works", Weight = 33.8 } };
// Calculate the sum of all package weights.
double totalWeight = packages.AsQueryable().Sum(pkg => pkg.Weight);
Console.WriteLine("The total weight of the packages is: {0}", totalWeight);
}
/*
This code produces the following output:
The total weight of the packages is: 83.7
*/
Structure Package
Public Company As String
Public Weight As Double
End Structure
Shared Sub SumEx3()
Dim packages As New List(Of Package)(New Package() { _
New Package With {.Company = "Coho Vineyard", .Weight = 25.2}, _
New Package With {.Company = "Lucerne Publishing", .Weight = 18.7}, _
New Package With {.Company = "Wingtip Toys", .Weight = 6.0}, _
New Package With {.Company = "Adventure Works", .Weight = 33.8}})
' Calculate the sum of all package weights.
Dim totalWeight As Double = packages.AsQueryable().Sum(Function(pkg) pkg.Weight)
MsgBox("The total weight of the packages is: " & totalWeight)
End Sub
'This code produces the following output:
'The total weight of the packages is: 83.7
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) 會產生 , MethodCallExpression 表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是在 的每個 元素source
上叫selector
用,並傳回結果值的總和。