Class PaginationSettings
Settings for pagination of results
public class PaginationSettings
- Inheritance
-
PaginationSettings
- Inherited Members
Properties
Skip
How many results to skip. For example: (skip 5, take 10) means return results 6-15
public int Skip { get; set; }
Property Value
Take
How many results to return
public int Take { get; set; }