Gets and sets the GroupByList for this Statement.

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

Syntax

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

Field Value

The GroupByList for this Statement.

Remarks

The GroupByList determines the way that input records are grouped into result aggregated records.

Basically, each GroupBy in the specified GroupByList represents a grouping property or dimension, and input records are assigned to a resulting aggregate based on their values for these properties and dimensions. Note that if an empty GroupByList is attached to a Statement, it indicates that the input records will be GROUPed to a single record.

See Also