Gets and sets the WHERE clause for this Statement.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public virtual IFilter WhereFilter { get; set; }
Visual Basic
Public Overridable Property WhereFilter As IFilter
	Get
	Set
Visual C++
public:
virtual property IFilter^ WhereFilter {
	IFilter^ get ();
	void set (IFilter^ value);
}

Field Value

An IFilter containing the WHERE clause for this Statement.

Remarks

The WHERE clause acts as a filter on input records that will be grouped into result aggregates. In other words, it specifies a pre-filter for this Statement.

See Also