Skip to main content
A newer version of this page is available.
All docs
V18.2

EFObjectSpace.EnableObjectDeletionOnRemove(Object, Boolean) Method

Enables/disables the deletion of persistent objects from the data source when they are removed from the specified collection.

Namespace: DevExpress.ExpressApp.EF

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

Declaration

public override void EnableObjectDeletionOnRemove(
    object collection,
    bool deleteObjectOnRemove
)

Parameters

Name Type Description
collection Object

A collection of persistent objects that are requested to be removed from the database along with their removal from the collection.

deleteObjectOnRemove Boolean

true, to enable the object deletion from the database along with their removal from the collection; false, to disable it.

Remarks

This method works only with collections of the EFCollection type and its descendants.

See Also