IEntityType.GetDerivedSkipNavigations Method

Definition

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

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.

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

Returns

IEnumerable<ISkipNavigation>

Derived skip navigation properties.

Applies to