Returns the string form of this Select.

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

Implements

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

Remarks

The Select format is:
CopyC#
<i>expression</i> AS <i>derived-prop-name</i>
where expression is the string form of an IExpr expression and derived-prop-name is the name of the derived property that will be produced.

Examples

This string:
CopyC#
AVG(Amount) / MAX(Amount) AS AvgOverMax
is returned if the derived property name is AvgOverMax and the expression assigns the ratio of the average Amount value to the maximum "Amount" value.

See Also