User-defined Aggregate. This Aggregate will only be executed once and will input a column of type I and output a column of type O. If your aggregator can be recursive (i.e. SUM is recursive while COUNT is not) you should write a RecursiveAggregate

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

Syntax

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

Type Parameters

I
Input type
O
Output type

Inheritance Hierarchy

Object
  Aggregate
    ScopeRuntime..::..Aggregate1<(Of <(<'I, O>)>)>

See Also