IReadOnlyEntityType.GetDerivedSkipNavigations Method

Definition

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

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

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