Back to Devexpress

Session.InTransaction Property

xpo-devexpress-dot-xpo-dot-session-062f5ca9.md

latest3.4 KB
Original Source

Session.InTransaction Property

Indicates whether a transaction is in progress.

Namespace : DevExpress.Xpo

Assembly : DevExpress.Xpo.v25.2.dll

NuGet Package : DevExpress.Xpo

Declaration

csharp
[Browsable(false)]
public virtual bool InTransaction { get; }
vb
<Browsable(False)>
Public Overridable ReadOnly Property InTransaction As Boolean

Property Value

TypeDescription
Boolean

true if a transaction is in progress; otherwise, false.

|

Remarks

A regular transaction is in progress until a call to either the Session.CommitTransaction method or the Session.RollbackTransaction method is made. An explicit transaction is in progress until a call to either the ExplicitUnitOfWork.CommitTransaction method or the ExplicitUnitOfWork.RollbackTransaction method is made.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the InTransaction property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

xpo-how-to-implement-self-referenced-persistent-objects-and-display-them-within-the-xtra-tree-list/CS/CS/Form1.cs#L83

csharp
private void Form1_FormClosing(object sender, FormClosingEventArgs e) {
    if(unitOfWork1.InTransaction)
        unitOfWork1.CommitChanges();

xpo-how-to-implement-self-referenced-persistent-objects-and-display-them-within-the-xtra-tree-list/VB/CS/Form1.vb#L70

vb
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As FormClosingEventArgs)
    If unitOfWork1.InTransaction Then unitOfWork1.CommitChanges()
End Sub

See Also

BeginTransaction()

CommitTransaction()

RollbackTransaction()

Session Class

Session Members

DevExpress.Xpo Namespace