IMutableEntityType.GetDerivedSkipNavigations Method

Definition

Gets all skip navigation properties declared on the types derived from this entity type.

public virtual System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IMutableSkipNavigation> GetDerivedSkipNavigations ();
abstract member GetDerivedSkipNavigations : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableSkipNavigation>
override this.GetDerivedSkipNavigations : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableSkipNavigation>
Public Overridable Function GetDerivedSkipNavigations () As IEnumerable(Of IMutableSkipNavigation)

Returns

Derived skip navigation properties.

Remarks

This method does not return skip navigation properties declared on the given entity type itself. Use GetSkipNavigations() to return skip navigation properties declared on this and base entity typed types.

Applies to