IDataStore.DeleteRow Method
.NET Standard 2.x
Deletes the specified row from the primary buffer of the DataStore. The deleted row will be moved to the delete buffer of the DataStore.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
Method | Description |
---|---|
DeleteRow(int row) | Deletes the specified row (by the index number) from the primary buffer of the DataStore. The deleted row will be moved to the delete buffer of the DataStore. |
DeleteRow<TModel>(TModel model) | Deletes the specified row (by the model object) from the primary buffer of the DataStore. The deleted row will be moved to the delete buffer of the DataStore. |
DeleteRow<TModel>(Predicate<TModel> predicate) | Deletes the row(s) which meet the condition from the primary buffer of the DataStore. The deleted row(s) will be moved to the delete buffer of the DataStore. |