IConventionEntityTypeBuilder.CanRemoveRelationship Method

Definition

Returns a value indicating whether the foreign key can be removed from this entity type.

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

Parameters

foreignKey
IConventionForeignKey

The foreign key to be removed.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the foreign key can be removed from this entity type.

Applies to