IEntityType.GetDeclaredNavigations Method

Definition

Gets all navigation properties declared on the given IEntityType.

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

Returns

Declared navigation properties.

Remarks

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

Applies to