IReadOnlyEntityType.GetDeclaredSkipNavigations Method

Definition

Gets all skip navigation properties declared on this entity type.

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

Returns

Declared skip navigations.

Remarks

This method does not return skip navigation properties declared declared on base types. It is useful when iterating over all entity types to avoid processing the same foreign key more than once. Use GetSkipNavigations() to also return skip navigation properties declared on base types.

Applies to