Skip to main content
.NET 6.0+

Session.ExplicitCommitTransaction() Method

Completes a database level transaction and commits changes made within it.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public void ExplicitCommitTransaction()

Remarks

To start an explicit transaction, use the Session.ExplicitBeginTransaction method. To complete the explicit transaction, call the ExplicitCommitTransaction method. All data modifications made since the start of the transaction can be discarded via the Session.ExplicitRollbackTransaction method call.

See Also