Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

The feature is backward compatible, which means the property EnablePagination must be set to true to explicitly request paginationrequest pagination explicitly. The existing code before the pagination feature remains unaffected.

The results of a paginated method are ordered by creation time in ascending order, from the oldest records to the newest. In this approach, a new entity will never interrupt the pagination and will be added as a new entity on the latest or a new page. Only the delete operation can shift entities toward the beginning of the enumeration. Creating a new entity is much more likely than deleting an existing one. Be aware of filters that can more likely affect the returned entities between pages.

...

Property

Description

EnablePagination

optional

It must be set to true to request pagination. This . The default value is false.

Info

Pagination must be

set

requested explicitly for backward compatibility

. The default value is false

; existing code remains unaffected.

PageSize

optional

Defines the size of a page; the value has boundaries from 1 to 5000. Negative, zero, and values higher than 5000 are not allowed. The default value is 2000.

PageIndex

optional

Used to iterate through pages. The valid value is from 0 to N. Negative values are not allowed. The default value is 0.

...