Class DataSourceLoadOptionsParser
A parser for the data processing settings.
Inheritance
DataSourceLoadOptionsParser
Assembly: DevExtreme.AspNet.Data.dll
Syntax
public static class DataSourceLoadOptionsParser
Fields
|
Improve this Doc
KEY_FILTER
Declaration
public const string KEY_FILTER = "filter"
Field Value
|
Improve this Doc
KEY_GROUP
Declaration
public const string KEY_GROUP = "group"
Field Value
|
Improve this Doc
KEY_GROUP_SUMMARY
Declaration
public const string KEY_GROUP_SUMMARY = "groupSummary"
Field Value
|
Improve this Doc
KEY_IS_COUNT_QUERY
Declaration
public const string KEY_IS_COUNT_QUERY = "isCountQuery"
Field Value
|
Improve this Doc
KEY_REQUIRE_GROUP_COUNT
Declaration
public const string KEY_REQUIRE_GROUP_COUNT = "requireGroupCount"
Field Value
|
Improve this Doc
KEY_REQUIRE_TOTAL_COUNT
Declaration
public const string KEY_REQUIRE_TOTAL_COUNT = "requireTotalCount"
Field Value
|
Improve this Doc
KEY_SELECT
Declaration
public const string KEY_SELECT = "select"
Field Value
|
Improve this Doc
KEY_SKIP
Declaration
public const string KEY_SKIP = "skip"
Field Value
|
Improve this Doc
KEY_SORT
Declaration
public const string KEY_SORT = "sort"
Field Value
|
Improve this Doc
KEY_TAKE
Declaration
public const string KEY_TAKE = "take"
Field Value
|
Improve this Doc
KEY_TOTAL_SUMMARY
Declaration
public const string KEY_TOTAL_SUMMARY = "totalSummary"
Field Value
Methods
|
Improve this Doc
Parse(DataSourceLoadOptionsBase, Func<String, String>)
Converts the string representations of the data processing settings to equivalent values of appropriate types.
Declaration
public static void Parse(DataSourceLoadOptionsBase loadOptions, Func<string, string> valueSource)
Parameters
Type |
Name |
Description |
DataSourceLoadOptionsBase |
loadOptions |
An object that will contain converted values.
|
Func<String, String> |
valueSource |
A function that accepts names of the data source options (such as "filter", "sort", etc.) and returns corresponding values.
|