Class GroupResult
The result of a call to a QueryableExtension.GroupByMany() overload.
Inheritance
System.Object
GroupResult
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class GroupResult : object
Properties
Count
The number of resulting elements in the group.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.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 dynamic Key { get; }
Property Value
Type | Description |
---|---|
System.Object |
Subgroups
The resulting subgroups in the group.
Declaration
public IEnumerable<GroupResult> Subgroups { get; }
Property Value
Type | Description |
---|---|
IEnumerable<GroupResult> |
Methods
ToString()
Returns a
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A |