Show / Hide Table of Contents

    IDataStore.GroupBy Method

    .NET Standard 2.x

    Groups all rows of the primary buffer by the current grouping criteria of DataStore.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Overloads

    Method Description
    GroupBy() Groups all rows of the primary buffer by the current grouping criteria of DataStore.
    GroupBy<TModel>() Groups all rows of the primary buffer by the current grouping criteria of DataStore.
    GroupBy(int level, string sortKey = null) Groups rows of the primary buffer by the level of grouping criteria of DataStore. The sort criteria can be specified.
    GroupBy<TModel>(int level, string sortKey = null) Groups rows of the primary buffer by the level of grouping criteria of DataStore. The sort criteria can be specified.
    GroupBy(string selectorKey, string sortKey = null) Groups rows of the primary buffer by the custom grouping criteria. The sort criteria can be specified.
    GroupBy<TModel>(string selectorKey, string sortKey = null) Groups rows of the primary buffer by the custom grouping criteria. The sort criteria can be specified.
    GroupBy<TModel>(Func<TModel, object> selectorKey) Groups rows of the primary buffer by the custom grouping criteria defined by Func<TModel, object>.
    Back to top Generated by Appeon