IConventionModelBuilder.CanRemoveEntity Method

Definition

Returns a value indicating whether the entity type can be removed from the model.

public bool CanRemoveEntity (Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, bool fromDataAnnotation = false);
abstract member CanRemoveEntity : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * bool -> bool
Public Function CanRemoveEntity (entityType As IConventionEntityType, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityType
IConventionEntityType

The entity type to be removed.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the navigation can be removed from this entity type.

Applies to