Returns the string form of this ExprBinary.

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

Implements

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

Remarks

The format for the DIVIDE, MINUS, MULTIPLY, and PLUS operators is:
CopyC#
"<i>lhs-expression</i><i>sign</i><i>rhs-expression</i>"
where sign is / (for DIVIDE), - (for MINUS), * (for MULTIPY), or + (for PLUS).

The format for the other operators is:

CopyC#
"<i>op</i>(<i>lhs-expression</i>, <i>rhs-expression</i>)"
where op is LOG, MOD, POWER, BROUND, or BTRUNC.

See Also