ConventionEntityTypeExtensions.FindDeclaredNavigation 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 static Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation FindDeclaredNavigation (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, string name);
static member FindDeclaredNavigation : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * string -> Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation
<Extension()>
Public Function FindDeclaredNavigation (entityType As IConventionEntityType, name As String) As IConventionNavigation

Parameters

entityType
IConventionEntityType

The entity type.

name
String

The name of the navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Applies to