Returns the string form of this FilterNot.

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

Implements

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

Remarks

The FilterNot format is:
CopyC#
NOT(<i>subfilter</i>)
where subfilter is the filter sub-expression.

Examples

This string:
CopyC#
NOT("SalesTotal" "FilterCompare.GT" "10000")
is returned if a NOT operation is performed on the result of the GREATER THAN comparison.

See Also