The result of a call to a QueryableExtension.GroupByMany() overload.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class GroupResultThe result of a call to a QueryableExtension.GroupByMany() overload.
public GroupResult()The number of resulting elements in the group.
public int Count { get; }
| Type | Description |
|---|---|
| int | The number of resulting elements in the group. |
The resulting elements in the group.
public Collections.IEnumerable Items { get; }
| Type | Description |
|---|---|
| Collections.IEnumerable | The resulting elements in the group. |
The key value of the group.
public object Key { get; }
| Type | Description |
|---|---|
| object | The key value of the group. |
The resulting subgroups in the group.
public IEnumerable<GroupResult> Subgroups { get; }
| Type | Description |
|---|---|
| IEnumerable<GroupResult> | The resulting subgroups in the group. |
Returns a String showing the key of the group and the number of items in the group.
public override string ToString()
| Type | Description |
|---|---|
| string | A String that represents this instance. |