Skip to main content
A newer version of this page is available. .

IObjectSpace.Committed Event

Raised after saving changes made to persistent objects belonging to the current Object Space to the database.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

event EventHandler Committed

Event Data

The Committed event's data class is EventArgs.

Remarks

The Committed event is raised after saving persistent object changes to the database as a result of calling the IObjectSpace.CommitChanges method.

If you implement the IObjectSpace interface in the BaseObjectSpace class’ descendant, you should override the BaseObjectSpace.DoCommit method which is called by the BaseObjectSpace.CommitChanges method. In this instance, you won’t have to raise the Committed event, since it is raised by the BaseObjectSpace.CommitChanges method.

See Also