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

Parameters

entityType
IMutableEntityType

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