Class DataResult<T>
Defines the members of the data manager operation result.
Namespace: Syncfusion.Blazor.Data
Assembly: Syncfusion.Blazor.dll
Syntax
public class DataResult<T> : Object
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
public IDictionary<string, object> Aggregates { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Count
Gets the total count of the records in data source.
Declaration
public int Count { get; set; }
Property Value
Type |
---|
System.Int32 |
FilteredRecords
Gets the filtered records.
Declaration
public IEnumerable FilteredRecords { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |
Result
Gets the result of the data operation.
Declaration
public IEnumerable Result { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |