IEntityType.GetDeclaredSkipNavigations Method

Definition

Gets all skip navigation properties declared on this entity type.

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

Returns

Declared foreign keys.

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