Class GroupResult
The result of a call to a DynamicQueryableExtensions.GroupByMany() overload.
Inherited Members
Namespace: System.Linq.Dynamic.Core
Assembly: System.Linq.Dynamic.Core.dll
Syntax
public class GroupResult
Properties
| Improve this Doc View SourceCount
The number of resulting elements in the group.
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Items
The resulting elements in the group.
Declaration
public IEnumerable Items { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable |
Key
The key value of the group.
Declaration
public object Key { get; }
Property Value
| Type | Description |
|---|---|
| Object |
Subgroups
The resulting subgroups in the group.
Declaration
public IEnumerable<GroupResult> Subgroups { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<GroupResult> |
Methods
| Improve this Doc View SourceToString()
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. |