Class GroupResult
The result of a call to a QueryableExtension.GroupByMany() overload.
Inherited Members
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class GroupResult
Constructors
GroupResult()
The result of a call to a QueryableExtension.GroupByMany() overload.
Declaration
public GroupResult()
Properties
Count
The number of resulting elements in the group.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
int |
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 |
---|---|
dynamic |
Subgroups
The resulting subgroups in the group.
Declaration
public IEnumerable<GroupResult> Subgroups { get; }
Property Value
Type | Description |
---|---|
IEnumerable<GroupResult> |
Methods
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. |