Class PagedAndSortedResultRequest
- Namespace
- CMS.Plugin.MesSuite.Abstractions.Models
- Assembly
- CMS.Plugin.MesSuite.Abstractions.dll
分页请求
[Serializable]
public class PagedAndSortedResultRequest : ExtensibleObject, IHasExtraProperties, IValidatableObject
- Inheritance
-
PagedAndSortedResultRequest
- Implements
-
IHasExtraProperties
- Derived
- Inherited Members
Properties
DefaultMaxResultCount
Default value: 10000.
public static int DefaultMaxResultCount { get; set; }
Property Value
MaxResultCount
Maximum result count should be returned. This is generally used to limit result count on paging.
[Range(1, 2147483647)]
public virtual int MaxResultCount { get; set; }
Property Value
Examples
10
SkipCount
The skip count.
[Range(0, 2147483647)]
public virtual int SkipCount { get; set; }
Property Value
Examples
0
Sorting
The sorting.
public virtual string Sorting { get; set; }
Property Value
Examples
CreationTime DESC