Returns the string form of this ExprAggregate.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public override string ToString()
Visual Basic
Public Overrides Function ToString As String
Visual C++
public:
virtual String^ ToString() override

Return Value

The string form of this ExprAggregate.

Implements

IQueryNode..::..ToString()()()()

Remarks

The ExprAggregate format is:
CopyC#
FUNCTION(<i>subexpression</i>)
where FUNCTION is an aggregate function name.

The format for an ExprAggregate with a filter is:

CopyC#
FUNCTION(<i>subexpression</i>) WHERE <i>filter</i>
where filter is the filter added by the Filter setting property.

See Also