Skip to main content
All docs
V18.2

CustomAssemblyBehavior Enum

OBSOLETE

This API member is no longer used. To learn more, see https://www.devexpress.com/bcid=BC3872.

Lists actions which can be performed in response to a request for loading a custom assembly for the Entity Framework Data Source.

Namespace: DevExpress.DataAccess.EntityFramework

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

[Obsolete("This API member is no longer used. To learn more, see https://www.devexpress.com/bcid=BC3872.")]
public enum CustomAssemblyBehavior

Members

Name Description
Prompt

Decide whether to load each custom assembly. Raise the CustomAssemblyLoading event and check the arguments. If the event is not handled - query the notification service. Cancel loading if neither event nor service provide a response.

LoadSilently

Custom assemblies can be loaded without notice.

NeverLoad

No custom assembly can ever be loaded.

Remarks

Because the EFWizardSettings.CustomAssemblyBehavior property has become obsolete, this enumeration is no longer used.

To manage the permissions granted to an Entity Framework data source, handle the EFDataSource.BeforeLoadCustomAssembly or EFDataSource.BeforeLoadCustomAssemblyGlobal event.

See Also