Gets or sets the number of aggregate records in each result set. The default is set to 10 to be compatible with the pager control. The returned results does not provide the number of items per page (Note, # of items per page is different than the number of results returned in the case there are less matching results than # of requested items per page). Thus, the result must obtain the # of items per page from the command.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
[CommandParameterPropertyAttribute(Key = "Arpp")]
[DefaultValueAttribute()]
public Nullable<int> AggregateRecordsPerPage { get; set; }
Visual Basic (Declaration)
<CommandParameterPropertyAttribute(Key := "Arpp")> _
<DefaultValueAttribute()> _
Public Property AggregateRecordsPerPage As Nullable(Of Integer)
Visual C++
[CommandParameterPropertyAttribute(Key = L"Arpp")]
[DefaultValueAttribute()]
public:
property Nullable<int> AggregateRecordsPerPage {
	Nullable<int> get ();
	void set (Nullable<int> value);
}

See Also