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
IConventionSkipNavigationBuilderThe builder for the skip navigation.
inverse
IConventionSkipNavigationThe current inverse skip navigation.
oldInverse
IConventionSkipNavigationThe old inverse skip navigation.
context
IConventionContext<IConventionSkipNavigation>Additional information associated with convention execution.