Returns the string form of this Select.
Namespace: Endeca.Navigation.AnalyticsAssembly: 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#
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.
<i>expression</i> AS <i>derived-prop-name</i>
Examples
This string:
CopyC#
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.
AVG(Amount) / MAX(Amount) AS AvgOverMax