Class DataResult<T>
Defines the members of the data manager operation result.
Inherited Members
Namespace: Syncfusion.Blazor.Data
Assembly: Syncfusion.Blazor.dll
Syntax
public class DataResult<T>
Type Parameters
| Name | Description |
|---|---|
| T | Type of the data source element. |
Constructors
DataResult()
Declaration
public DataResult()
Properties
Aggregates
Gets the aggregate result based on the aggregate query.
Declaration
[JsonPropertyName("aggregates")]
public IDictionary<string, object> Aggregates { get; set; }
Property Value
| Type |
|---|
| IDictionary<string, object> |
Count
Gets the total count of the records in data source.
Declaration
[JsonPropertyName("count")]
public int Count { get; set; }
Property Value
| Type |
|---|
| int |
FilteredRecords
Gets the filtered records.
Declaration
public IEnumerable FilteredRecords { get; set; }
Property Value
| Type |
|---|
| IEnumerable |
Result
Gets the result of the data operation.
Declaration
[JsonPropertyName("result")]
public IEnumerable Result { get; set; }
Property Value
| Type |
|---|
| IEnumerable |