Queryable.Sum Метод
Определение
Вычисляет сумму последовательности числовых значений.Computes the sum of a sequence of numeric values.
Перегрузки
Sum(IQueryable<Single>) |
Вычисляет сумму последовательности значений типа Single.Computes the sum of a sequence of Single values. |
Sum(IQueryable<Nullable<Single>>) |
Вычисляет сумму последовательности значений Single обнуляемого типа.Computes the sum of a sequence of nullable Single values. |
Sum(IQueryable<Nullable<Int64>>) |
Вычисляет сумму последовательности значений Int64 обнуляемого типа.Computes the sum of a sequence of nullable Int64 values. |
Sum(IQueryable<Nullable<Int32>>) |
Вычисляет сумму последовательности значений Int32 обнуляемого типа.Computes the sum of a sequence of nullable Int32 values. |
Sum(IQueryable<Nullable<Double>>) |
Вычисляет сумму последовательности значений Double обнуляемого типа.Computes the sum of a sequence of nullable Double values. |
Sum(IQueryable<Int32>) |
Вычисляет сумму последовательности значений типа Int32.Computes the sum of a sequence of Int32 values. |
Sum(IQueryable<Int64>) |
Вычисляет сумму последовательности значений типа Int64.Computes the sum of a sequence of Int64 values. |
Sum(IQueryable<Nullable<Decimal>>) |
Вычисляет сумму последовательности значений Decimal обнуляемого типа.Computes the sum of a sequence of nullable Decimal values. |
Sum(IQueryable<Double>) |
Вычисляет сумму последовательности значений типа Double.Computes the sum of a sequence of Double values. |
Sum(IQueryable<Decimal>) |
Вычисляет сумму последовательности значений типа Decimal.Computes the sum of a sequence of Decimal values. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) |
Вычисляет сумму последовательности значений Single обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) |
Вычисляет сумму последовательности значений Int64 обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) |
Вычисляет сумму последовательности значений Int32 обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) |
Вычисляет сумму последовательности значений Double обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) |
Вычисляет сумму последовательности значений типа Single, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of Single values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) |
Вычисляет сумму последовательности значений типа Int64, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of Int64 values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) |
Вычисляет сумму последовательности значений типа Int32, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of Int32 values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) |
Вычисляет сумму последовательности значений типа Double, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) |
Вычисляет сумму последовательности значений типа Decimal, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence. |
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) |
Вычисляет сумму последовательности значений Decimal обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence. |
Sum(IQueryable<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, сумму которых требуется вычислить.A sequence of Single values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum(IQueryable<Single>) для суммирования значений последовательности.The following code example demonstrates how to use Sum(IQueryable<Single>) to sum the values of a sequence.
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>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Single>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Single>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Single>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Single>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<Nullable<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>>
Последовательность значений Single обнуляемого типа, сумму которых требуется вычислить.A sequence of nullable Single values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum(IQueryable<Nullable<Single>>) для суммирования значений последовательности.The following code example demonstrates how to use Sum(IQueryable<Nullable<Single>>) to sum the values of a sequence.
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>>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Nullable<Single>>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Nullable<Single>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Nullable<Single>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Nullable<Single>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<Nullable<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>>
Последовательность значений Int64 обнуляемого типа, сумму которых требуется вычислить.A sequence of nullable Int64 values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Nullable<Int64>>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Nullable<Int64>>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Nullable<Int64>>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Nullable<Int64>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Nullable<Int64>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Nullable<Int64>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<Nullable<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>>
Последовательность значений Int32 обнуляемого типа, сумму которых требуется вычислить.A sequence of nullable Int32 values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Nullable<Int32>>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Nullable<Int32>>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Nullable<Int32>>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Nullable<Int32>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Nullable<Int32>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Nullable<Int32>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<Nullable<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>>
Последовательность значений Double обнуляемого типа, сумму которых требуется вычислить.A sequence of nullable Double values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Nullable<Double>>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Nullable<Double>>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Nullable<Double>>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Nullable<Double>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Nullable<Double>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Nullable<Double>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<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, сумму которых требуется вычислить.A sequence of Int32 values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Int32>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Int32>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Int32>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Int32>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Int32>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Int32>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<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, сумму которых требуется вычислить.A sequence of Int64 values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Int64>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Int64>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Int64>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Int64>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Int64>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Int64>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<Nullable<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>>
Последовательность значений Decimal обнуляемого типа, сумму которых требуется вычислить.A sequence of nullable Decimal values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Nullable<Decimal>>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Nullable<Decimal>>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Nullable<Decimal>>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Nullable<Decimal>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Nullable<Decimal>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Nullable<Decimal>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<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, сумму которых требуется вычислить.A sequence of Double values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Double>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Double>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Double>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Double>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Double>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Double>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum(IQueryable<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, сумму которых требуется вычислить.A sequence of Decimal values to calculate the sum of.
Возвращаемое значение
Сумма последовательности значений.The sum of the values in the sequence.
Исключения
source
имеет значение null
.source
is null
.
Комментарии
Sum(IQueryable<Decimal>)Метод создает объект MethodCallExpression , который представляет вызов Sum(IQueryable<Decimal>) самого себя как сконструированного универсального метода.The Sum(IQueryable<Decimal>) method generates a MethodCallExpression that represents calling Sum(IQueryable<Decimal>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum(IQueryable<Decimal>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum(IQueryable<Decimal>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он возвращает сумму значений в source
.The expected behavior is that it returns the sum of the values in source
.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>)
Вычисляет сумму последовательности значений Single обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence.
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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Nullable<Single>>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Single>>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>)
Вычисляет сумму последовательности значений Int64 обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence.
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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Nullable<Int64>>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int64>>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>)
Вычисляет сумму последовательности значений Int32 обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence.
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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Nullable<Int32>>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Int32>>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>)
Вычисляет сумму последовательности значений Double обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.
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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Nullable<Double>>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Double>>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Single>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Single>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Int64>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int64>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Int32>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Double>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) depends on the implementation of the type of he source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Decimal>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Decimal>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.
Применяется к
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>)
Вычисляет сумму последовательности значений Decimal обнуляемого типа, получаемой в результате применения функции проекции к каждому элементу входной последовательности.Computes the sum of the sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.
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
.The type of the elements of source
.
Параметры
- source
- IQueryable<TSource>
Последовательность значений типа TSource
.A sequence of values of type TSource
.
- selector
- Expression<Func<TSource,Nullable<Decimal>>>
Функция проекции, применяемая к каждому элементу.A projection function to apply to each element.
Возвращаемое значение
Сумма проецированных значений.The sum of the projected values.
Исключения
Параметр source
или selector
имеет значение null
.source
or selector
is null
.
Примеры
В следующем примере кода показано, как использовать функцию Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) для суммирования проецируемых значений последовательности.The following code example demonstrates how to use Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Double>>) to sum the projected values of a sequence.
Примечание
В этом примере кода используется перегруженная версия данного метода, отличная от его перегруженной версии, описанной в настоящем разделе.This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. Чтобы распространить пример на этот раздел, измените текст функции selector
.To extend the example to this topic, change the body of the selector
function.
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> типов.This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T,TResult> types. Для этих параметров можно передать лямбда-выражение, которое будет скомпилировано в Expression<TDelegate> .For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>)Метод создает объект MethodCallExpression , который представляет вызов Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) самого себя как сконструированного универсального метода.The Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) method generates a MethodCallExpression that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) itself as a constructed generic method. Затем он передает MethodCallExpression Execute<TResult>(Expression) методу класса, IQueryProvider представленного Provider свойством source
параметра.It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source
parameter.
Поведение запроса, которое происходит в результате выполнения дерева выражения, представляющего вызов, Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) зависит от реализации типа source
параметра.The query behavior that occurs as a result of executing an expression tree that represents calling Sum<TSource>(IQueryable<TSource>, Expression<Func<TSource,Nullable<Decimal>>>) depends on the implementation of the type of the source
parameter. Ожидаемое поведение заключается в том, что он вызывается selector
для каждого элемента source
и возвращает сумму результирующих значений.The expected behavior is that it invokes selector
on each element of source
and returns the sum of the resulting values.