Constructor Aggregate
- Namespace
- YndigoBlue.Velocity.Model
- Assembly
- YndigoBlue.Velocity.dll
Aggregate(AggregateType)
Creates a new aggregate without any elements.
public Aggregate(AggregateType aggregateType)
Parameters
aggregateTypeAggregateTypeThe type of aggregate operation to perform.
Aggregate(AggregateType, IElement)
Creates a new aggregate with a single element.
public Aggregate(AggregateType aggregateType, IElement element)
Parameters
aggregateTypeAggregateTypeThe type of aggregate operation to perform.
elementIElementThe column or expression to aggregate.
Aggregate(AggregateType, IEnumerable<IElement>)
Creates a new aggregate with multiple elements.
public Aggregate(AggregateType aggregateType, IEnumerable<IElement> elements)
Parameters
aggregateTypeAggregateTypeThe type of aggregate operation to perform.
elementsIEnumerable<IElement>The collection of columns, operators, and expressions to aggregate.
Aggregate(AggregateType, params IElement[])
Creates a new aggregate with multiple elements.
public Aggregate(AggregateType aggregateType, params IElement[] elements)
Parameters
aggregateTypeAggregateTypeThe type of aggregate operation to perform.
elementsIElement[]The array of columns, operators, and expressions to aggregate.