Table of Contents

Interface ISkipNavigationInverseChangedConvention

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

Represents an operation that should be performed when a skip navigation inverse is changed.

public interface ISkipNavigationInverseChangedConvention : IConvention

Remarks

See Model building conventions for more information and examples.

Methods

ProcessSkipNavigationInverseChanged(IConventionSkipNavigationBuilder, IConventionSkipNavigation?, IConventionSkipNavigation?, IConventionContext<IConventionSkipNavigation>)

Called after a skip navigation inverse is changed.

void ProcessSkipNavigationInverseChanged(IConventionSkipNavigationBuilder skipNavigationBuilder, IConventionSkipNavigation? inverse, IConventionSkipNavigation? oldInverse, IConventionContext<IConventionSkipNavigation> context)

Parameters

skipNavigationBuilder IConventionSkipNavigationBuilder

The builder for the skip navigation.

inverse IConventionSkipNavigation

The current inverse skip navigation.

oldInverse IConventionSkipNavigation

The old inverse skip navigation.

context IConventionContext<IConventionSkipNavigation>

Additional information associated with convention execution.