Table of Contents

Interface ISkipNavigationRemovedConvention

Namespace
Microsoft.EntityFrameworkCore.Metadata.Conventions
Assembly
Microsoft.EntityFrameworkCore.dll

Represents an operation that should be performed when a skip navigation is removed from the entity type.

public interface ISkipNavigationRemovedConvention : IConvention

Remarks

See Model building conventions for more information and examples.

Methods

ProcessSkipNavigationRemoved(IConventionEntityTypeBuilder, IConventionSkipNavigation, IConventionContext<IConventionSkipNavigation>)

Called after a skip navigation is removed from the entity type.

void ProcessSkipNavigationRemoved(IConventionEntityTypeBuilder entityTypeBuilder, IConventionSkipNavigation navigation, IConventionContext<IConventionSkipNavigation> context)

Parameters

entityTypeBuilder IConventionEntityTypeBuilder

The builder for the entity type that contained the navigation.

navigation IConventionSkipNavigation

The removed navigation.

context IConventionContext<IConventionSkipNavigation>

Additional information associated with convention execution.