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.IsDeletionDeferredType(Type) Method

Returns a value that indicates if deferred deletion is enabled for persistent objects of a given type.

Namespace: DevExpress.ExpressApp.EF

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

Declaration

public override bool IsDeletionDeferredType(
    Type type
)

Parameters

Name Type Description
type Type

A Type object that is a type of persistent object.

Returns

Type Description
Boolean

true, if deferred deletion is enabled; otherwise - false.

Remarks

Deferred and Immediate Object Deletion is an XPO-specific feature. So, in the EFObjectSpace class, the IsDeletionDeferredType method always returns false.

See Also