Skip to main content
A newer version of this page is available.
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

EFObjectSpace.IsDeletedObject(Object) Method

Indicates whether the specified persistent object is deleted from the database.

Namespace: DevExpress.ExpressApp.EF

Assembly: DevExpress.ExpressApp.EF.v19.2.dll

Declaration

public override bool IsDeletedObject(
    object obj
)

Parameters

Name Type Description
obj Object

The object to be tested.

Returns

Type Description
Boolean

true if the specified object is deleted; otherwise, false.

Remarks

When an object is deleted, it’s not deleted immediately from the database. It’s marked as an object to delete and removed from the database the next time the IObjectSpace.CommitChanges method is called.

Use the IsDeletedObject method to determine whether a particular object is deleted and this is committed to the database.

See Also