Skip to main content
.NET 6.0+

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.v23.2.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