Returns the string form of this SelectList.

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

Implements

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

Remarks

The SelectList format is:
CopyC#
SELECT <i>expression1</i> AS <i>derived-prop-name1</i>, <i>expression2</i> AS <i>derived-prop-name2</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

The string:
CopyC#
SELECT COUNT(TransId) AS NumTrans
is returned if the derived property name is NumTrans and the expression uses the COUNT function to compute the number of transactions by the TransId field.

See Also