IMutableEntityType.RemoveSkipNavigation Method

Definition

Overloads

RemoveSkipNavigation(IMutableSkipNavigation)

Removes a skip navigation properties from this entity type.

RemoveSkipNavigation(IReadOnlySkipNavigation)

Removes a skip navigation properties from this entity type.

RemoveSkipNavigation(IMutableSkipNavigation)

Removes a skip navigation properties from this entity type.

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

Parameters

navigation
IMutableSkipNavigation

The skip navigation to be removed.

Returns

The removed skip navigation.

Applies to

RemoveSkipNavigation(IReadOnlySkipNavigation)

Removes a skip navigation properties from this entity type.

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

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