Class BatchChanges<T>
Defines the batch changes.
Inheritance
System.Object
BatchChanges<T>
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class BatchChanges<T> : Object
Type Parameters
Name |
---|
T |
Constructors
BatchChanges()
Declaration
public BatchChanges()
Properties
AddedRecords
Specifies the collection that contains added records.
Declaration
public List<T> AddedRecords { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
ChangedRecords
Specifies the collection that contains changed records.
Declaration
public List<T> ChangedRecords { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
DeletedRecords
Specifies the collection that contains deleted records.
Declaration
public List<T> DeletedRecords { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |