The ExprAggregate type exposes the following members.

Constructors

  NameDescription
Public methodExprAggregate
Creates a new ExprAggregate, which will compute an aggregate function over the evaluation of the subexpression expr on the members of the aggregated record.

Methods

  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type. GetHashCode()()()() is suitable for use in hashing algorithms and data structures like a hash table.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns the string form of this ExprAggregate.
(Overrides Object..::..ToString()()()().)
Public methodToWire
Returns the wire form of this ExprAggregate.
Public methodValidateSyntax
Validates the syntax of this ExprAggregate.

Fields

  NameDescription
Public fieldStatic memberARB
Arbitrary function.
Public fieldStatic memberAVG
Average function.
Public fieldStatic memberCOUNT
Count function.
Public fieldStatic memberCOUNTDISTINCT
Count Distinct function.
Public fieldStatic memberMAX
Maximum function.
Public fieldStatic memberMEDIAN
Median function.
Public fieldStatic memberMIN
Minimum function.
Public fieldStatic memberSTDDEV
Standard Deviation function.
Public fieldStatic memberSUM
Sum function.
Public fieldStatic memberVARIANCE
Variance function.

Properties

  NameDescription
Public propertyFilter
Gets and sets the filter associated with this expression.
Public propertyFunction
Gets and sets the aggregate function for this ExprAggregate.
Public propertyIExpr
Gets and sets the subexpression for this ExprAggregate. The aggregate function will be evaluated on this subexpression.

See Also