Session.IsObjectToDelete(Object) Method
Indicates whether the specified object is deleted in the transaction currently in progress.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v25.1.dll
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 deleted in the transaction currently in progress; otherwise, false. |
Remarks
To get a collection of persistent objects that are deleted in the transaction currently in progress, use the Session.GetObjectsToDelete method.
For general information on deleting persistent objects, see Deleting Persistent Objects.
See Also