IConventionEntityType.FindDeclaredNavigation(String) Method

Definition

Gets a navigation property on the given entity type. Does not return navigation properties defined on a base type. Returns null if no navigation property is found.

public virtual Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation? FindDeclaredNavigation (string name);
abstract member FindDeclaredNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation
override this.FindDeclaredNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation
Public Overridable Function FindDeclaredNavigation (name As String) As IConventionNavigation

Parameters

name
String

The name of the navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Applies to