Returns the string form of this FilterCompare.

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

Implements

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

Remarks

The FilterCompare format is:
CopyC#
("<i>fieldName</i>" "<i>compare-function</i>" '<i>compare-value</i>')
Note that compare-value is not returned for the FilterCompare.IS_NULL and FilterCompare.IS_NOT_NULL functions.

For the FilterCompare.DVAL function, the format is:

CopyC#
(DVAL("<i>value</i>")
For example:
CopyC#
("SalesTotal" "FilterCompare.GT" '10000')
is returned if the property name is "SalesTotal" and a GREATER THAN comparison is being made to the value of 10000.

See Also