Skip to main content
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

EFCoreObjectSpace.IsObjectToDelete(Object) Method

Checks whether or not the specified object is marked as deleted but still exists in the database.

Namespace: DevExpress.ExpressApp.EFCore

Assembly: DevExpress.ExpressApp.EFCore.v23.2.dll

NuGet Package: DevExpress.ExpressApp.EFCore

Declaration

public override bool IsObjectToDelete(
    object obj
)

Parameters

Name Type Description
obj Object

The persistent object this method checks.

Returns

Type Description
Boolean

true, if the specified object is marked as deleted but still exists in the database; otherwise, false.

Remarks

When you create, modify, or delete an object, call the BaseObjectSpace.CommitChanges method to save all changes to the current Object Space’s persistent objectsin the database. To get the list of objects to be committed, use the EFCoreObjectSpace.ModifiedObjects property. After calling the BaseObjectSpace.CommitChanges method, this list is empty.

See Also