Session.ObjectsSavedInCurrentTransaction Property
In This Article
OBSOLETE
Please use Get
Gets the collection of IXPSimpleObject objects that are saved in the transaction currently in progress.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.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 IXPSimple |
#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