Returns the string form of this GroupByList.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

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 GroupByList.

Implements

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

Remarks

The GroupByList format for an empty GroupByList is:
CopyC#
GROUP
An empty GroupByList indicates a GROUP operation that will result in a single result record.

The format:

CopyC#
GROUP BY <i>grouping-key-name1</i>, ...
is used if the GroupByList has one or more GroupBy objects.

Examples

The string:
CopyC#
GROUP BY Region, Year
is returned if the aggregated records are grouped by the Region and Year combination.

See Also