Search Results for

    Show / Hide Table of Contents

    Class GroupResult

    The result of a call to a DynamicQueryableExtensions.GroupByMany() overload.

    Inheritance
    Object
    GroupResult
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: System.Linq.Dynamic.Core
    Assembly: System.Linq.Dynamic.Core.dll
    Syntax
    public class GroupResult

    Properties

    | Improve this Doc View Source

    Count

    The number of resulting elements in the group.

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Items

    The resulting elements in the group.

    Declaration
    public IEnumerable Items { get; }
    Property Value
    Type Description
    IEnumerable
    | Improve this Doc View Source

    Key

    The key value of the group.

    Declaration
    public object Key { get; }
    Property Value
    Type Description
    Object
    | Improve this Doc View Source

    Subgroups

    The resulting subgroups in the group.

    Declaration
    public IEnumerable<GroupResult> Subgroups { get; }
    Property Value
    Type Description
    IEnumerable<GroupResult>

    Methods

    | Improve this Doc View Source

    ToString()

    Returns a String showing the key of the group and the number of items in the group.

    Declaration
    public override string ToString()
    Returns
    Type Description
    String

    A String that represents this instance.

    Overrides
    Object.ToString()
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX