| PaginationRequestTDtoInterface Properties |
[This is preliminary documentation and is subject to change.]
The PaginationRequestTDtoInterface generic type exposes the following members.
| Name | Description | ||
|---|---|---|---|
| PaginationRequestTDtoInterfaceOrderbyList | OrderBys |
How the result should be ordered.
Cleanest to add using object and collection initializer
new PaginationRequest<ICustomerDTO>()
{
PageNumber = 1,
PageSize = 30,
OrderBys =
{
{x => x.LastName, ListSortDirection.Ascending},
{x => x.FirstName, ListSortDirection.Ascending},
},
};
| |
| Int32 | PageNumber |
The requested one based page number. Default 1 which is the first page
| |
| Int32 | PageSize |
The desired number of results per page, default 1000
|