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

Parameters

entityType
IEntityType

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