DataRow::AcceptChanges Method ()
.NET Framework (current version)
Commits all the changes made to this row since the last time AcceptChanges was called.
Assembly: System.Data (in System.Data.dll)
| Exception | Condition |
|---|---|
| RowNotInTableException | The row does not belong to the table. |
When invoking AcceptChanges, the EndEdit method is implicitly called to end any edits. If the RowState of the row was Added or Modified, the RowState becomes Unchanged. If the RowState was Deleted, the row is removed.
See the BeginEdit method for more information.
The DataTable class also has an AcceptChanges method which affects changes made to the whole table. For more information and a code example that demonstrates how to accept and reject changes to individual data rows, see AcceptChanges and RejectChanges.
.NET Framework
Available since 1.1
Available since 1.1
Show: