Expand Minimize
This topic has not yet been rated - Rate this topic

CepWindowExtensionMethods.Sum<TPayload> Method (CepWindow<TPayload>, Expression<Func<TPayload, Nullable<Int64>>>)

SQL Server 2008 R2

Computes the sum of all events in a window. The value to compute the sum over is defined in the input expression parameter.

Namespace:  Microsoft.ComplexEventProcessing.Linq
Assembly:  Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
public static Nullable<long> Sum<TPayload>(
	this CepWindow<TPayload> window,
	Expression<Func<TPayload, Nullable<long>>> input
)

Type Parameters

TPayload

Payload type of window events.

Parameters

window
Type: Microsoft.ComplexEventProcessing.Linq.CepWindow<TPayload>
The window that the sum is computed over.
input
Type: System.Linq.Expressions.Expression<Func<TPayload, Nullable<Int64>>>
Lambda expression which defines the input value for the summation based on an input event.

Return Value

Type: System.Nullable<Int64>
A nullable value that contains the result of the summation.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type CepWindow<TPayload>. When you use instance method syntax to call this method, omit the first parameter. For more information, see http://msdn.microsoft.com/en-us/library/bb384936 or http://msdn.microsoft.com/en-us/library/bb383977.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.