ListOptions<T> class
List options.
public class ListOptions<T> : ExpandOptions<T>, IListOptions<T>, IPaginationOptions
| parameter |
description |
| T |
target type |
Public Members
| name |
description |
| ListOptions() |
The default constructor. |
| FilterBy { get; } |
Current filter settings. |
| OrderBy { get; } |
Current sort settings. |
| Skip { get; set; } |
Items to skip. |
| SkipTotalCount { get; set; } |
Wether to skip the total items number or not. Set to false for improved performance. |
| Take { get; set; } |
Items to take. |
| AddFilter(…) |
Adds a filtering option. (2 methods) |
| AddFilter<TProperty>(…) |
Adds a filtering option. |
| AddSort(…) |
Adds a sorting option. (2 methods) |
| AddSort<TProperty>(…) |
Adds a sorting option. |
See Also