IDataStore.AddRow Method
.NET Standard 2.x
Appends an empty row to the end of the primary buffer in the DataStore and returns the index number.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
Method | Description |
---|---|
AddRow() | Appends an empty row to the end of the primary buffer in the DataStore and returns the index number. If any columns have default values, the row is initialized with these values. |
AddRow<TModel>(TModel model) | Generic method. Appends a TModel object as a row to the end of the primary buffer in the DataStore and returns the index number. |
AddRow<TModel>(IEnumable<TModel> list) | Generic method. Appends a sequence of TModel objects as row(s) to the end of the primary buffer in the DataStore and returns the index of the first row added. TModel must match with the DataObject property of the DataStore. |