Click or drag to resize
PaginationRequestTDtoInterface Properties

[This is preliminary documentation and is subject to change.]

The PaginationRequestTDtoInterface generic type exposes the following members.

Properties
  NameDescription
Public propertyPaginationRequestTDtoInterfaceOrderbyListOrderBys
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}, }, };
Public propertyInt32PageNumber
The requested one based page number. Default 1 which is the first page
Public propertyInt32PageSize
The desired number of results per page, default 1000
Top
See Also