Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Session.ObjectsSavedInCurrentTransaction Property

OBSOLETE

Please use GetObjectsToSave instead

Gets the collection of IXPSimpleObject objects that are saved in the transaction currently in progress.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v21.1.dll

NuGet Package: DevExpress.Xpo

Declaration

[Browsable(false)]
[Obsolete("Please use GetObjectsToSave() instead", true)]
public ICollection ObjectsSavedInCurrentTransaction { get; }

Property Value

Type Description
ICollection

A collection of IXPSimpleObject objects.

Remarks

The ObjectsSavedInCurrentTransaction collection is cleared each time you start a transaction via the Session.BeginTransaction method or end a transaction via the Session.CommitTransaction or Session.RollbackTransaction methods.

See Also