IConventionEntityType.RemoveSkipNavigation Method

Definition

Overloads

RemoveSkipNavigation(IConventionSkipNavigation)

Removes a skip navigation property from this entity type.

RemoveSkipNavigation(IReadOnlySkipNavigation)

Removes a skip navigation property from this entity type.

RemoveSkipNavigation(IConventionSkipNavigation)

Removes a skip navigation property from this entity type.

public Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation RemoveSkipNavigation (Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation navigation);
abstract member RemoveSkipNavigation : Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation -> Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation
Public Function RemoveSkipNavigation (navigation As IConventionSkipNavigation) As IConventionSkipNavigation

Parameters

navigation
IConventionSkipNavigation

The skip navigation to be removed.

Returns

The removed skip navigation.

Applies to

RemoveSkipNavigation(IReadOnlySkipNavigation)

Removes a skip navigation property from this entity type.

public Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation? RemoveSkipNavigation (Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation navigation);
abstract member RemoveSkipNavigation : Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation -> Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation
Public Function RemoveSkipNavigation (navigation As IReadOnlySkipNavigation) As IConventionSkipNavigation

Parameters

navigation
IReadOnlySkipNavigation

The skip navigation to be removed.

Returns

The removed skip navigation, or null if the skip navigation was not found.

Applies to