User-defined Aggregate. This Aggregate will only be executed once and will input columns of type I1 and I2 and output a column of type O. By definition, this is not recursive.

Namespace: ScopeRuntime
Assembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)

Syntax

C#
public abstract class Aggregate2<I1, I2, O> : Aggregate
Visual Basic
Public MustInherit Class Aggregate2(Of I1, I2, O) _
	Inherits Aggregate
Visual C++
generic<typename I1, typename I2, typename O>
public ref class Aggregate2 abstract : public Aggregate

Type Parameters

I1
Input type 1
I2
Input type 2
O
Output type

Inheritance Hierarchy

Object
  Aggregate
    ScopeRuntime..::..Aggregate2<(Of <(<'I1, I2, O>)>)>

See Also