IConventionEntityTypeBuilder.HasNoNavigation Method

Definition

Removes a navigation from this entity type.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder? HasNoNavigation (Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation navigation, bool fromDataAnnotation = false);
abstract member HasNoNavigation : Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder
Public Function HasNoNavigation (navigation As IConventionNavigation, Optional fromDataAnnotation As Boolean = false) As IConventionEntityTypeBuilder

Parameters

navigation
IConventionNavigation

The navigation to be removed.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the navigation was removed, null otherwise.

Applies to