Class PagedResult<T>
A page of results plus the total count for the query.
public sealed class PagedResult<T>
Type Parameters
TItem type.
- Inheritance
-
PagedResult<T>
- Inherited Members
Properties
Items
Items on the current page.
public IReadOnlyList<T> Items { get; set; }
Property Value
Page
Current page number (1-based).
public int Page { get; set; }
Property Value
PageSize
Number of items per page.
public int PageSize { get; set; }
Property Value
TotalCount
Total number of items matching the query across all pages.
public int TotalCount { get; set; }