Session.IsObjectToSave(Object) Method
Indicates whether the specified object is saved in the transaction currently in progress.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Parameters
Name | Type | Description |
---|---|---|
theObject | Object | The persistent object to test. |
Returns
Type | Description |
---|---|
Boolean | true if the specified object is saved in the transaction currently in progress; otherwise, false. |
Remarks
To get a collection of persistent objects that are saved in the transaction currently in progress, use the Session.GetObjectsToSave method.
For general information on saving persistent objects, see Persisting Objects.
See Also