Class LoadDataSettings
Encapsulates table settings used as parameters for loading data (paging, sorting, searching, filtering).
public sealed class LoadDataSettings
- Inheritance
-
objectLoadDataSettings
- Extension Methods
Constructors
LoadDataSettings(int, int, string, SortTypeEnum, string, IWhereCondition)
Initializes a new instance of LoadDataSettings.
public LoadDataSettings(int pageSize, int selectedPage, string sortBy, SortTypeEnum sortType, string searchTerm, IWhereCondition filterWhereCondition = null)
Parameters
pageSize
intSize of the page.
selectedPage
intNumber of selected page.
sortBy
stringName of the property to sort by.
sortType
SortTypeEnumType of the sorting.
searchTerm
stringValue to filter by.
filterWhereCondition
IWhereConditionWHERE condition to filter by.
Properties
FilterWhereCondition
Represents a WHERE condition to be applied on data query to restrict listing data according to filtering criteria. The condition is constructed from a filter model of PageConfiguration.
public IWhereCondition FilterWhereCondition { get; }
Property Value
PageSize
Gets size of the page.
public int PageSize { get; }
Property Value
- int
SearchTerm
The value by which elements are filtered.
public string SearchTerm { get; }
Property Value
- string
SelectedPage
Gets the number of selected page.
public int SelectedPage { get; }
Property Value
- int
SortBy
Name of the property that elements are sorted by.
public string SortBy { get; }
Property Value
- string
SortType
The order of the sorting.
public SortTypeEnum SortType { get; }