Search Results for

    Show / Hide Table of Contents

    Interface ISelectGroupingAggregate<TKey>

    Namespace: FreeSql
    Assembly: FreeSql.dll
    Syntax
    public interface ISelectGroupingAggregate<TKey>
    Type Parameters
    Name Description
    TKey

    Properties

    | Improve this Doc View Source

    Key

    分组的数据

    Declaration
    TKey Key { get; set; }
    Property Value
    Type Description
    TKey

    Methods

    | Improve this Doc View Source

    Avg<T3>(T3)

    平均值

    Declaration
    decimal Avg<T3>(T3 column)
    Parameters
    Type Name Description
    T3 column
    Returns
    Type Description
    System.Decimal
    Type Parameters
    Name Description
    T3
    | Improve this Doc View Source

    Count()

    记录总数

    Declaration
    int Count()
    Returns
    Type Description
    System.Int32
    | Improve this Doc View Source

    Count<T3>(T3)

    Declaration
    int Count<T3>(T3 column)
    Parameters
    Type Name Description
    T3 column
    Returns
    Type Description
    System.Int32
    Type Parameters
    Name Description
    T3
    | Improve this Doc View Source

    Max<T3>(T3)

    最大值

    Declaration
    T3 Max<T3>(T3 column)
    Parameters
    Type Name Description
    T3 column
    Returns
    Type Description
    T3
    Type Parameters
    Name Description
    T3
    | Improve this Doc View Source

    Min<T3>(T3)

    最小值

    Declaration
    T3 Min<T3>(T3 column)
    Parameters
    Type Name Description
    T3 column
    Returns
    Type Description
    T3
    Type Parameters
    Name Description
    T3
    | Improve this Doc View Source

    Sum<T3>(T3)

    求和

    Declaration
    decimal Sum<T3>(T3 column)
    Parameters
    Type Name Description
    T3 column
    Returns
    Type Description
    System.Decimal
    Type Parameters
    Name Description
    T3
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX