Gets and sets the HAVING 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 HavingFilter { get; set; }
Visual Basic
Public Overridable Property HavingFilter As IFilter
	Get
	Set
Visual C++
public:
virtual property IFilter^ HavingFilter {
	IFilter^ get ();
	void set (IFilter^ value);
}

Field Value

An IFilter containing the HAVING clause for this Statement.

Remarks

A HAVING clause acts as a filter on output aggregated records. In other words, it specifies a post-filter for this Statement.

See Also