IMutableEntityType.GetDeclaredNavigations Method

Definition

Gets all navigation properties declared on this entity type.

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

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