MutableEntityTypeExtensions.FindNavigation Method

Definition

Overloads

FindNavigation(IMutableEntityType, MemberInfo)

Gets a navigation property on the given entity type. Returns null if no navigation property is found.

FindNavigation(IMutableEntityType, PropertyInfo)

Gets a navigation property on the given entity type. Returns null if no navigation property is found.

FindNavigation(IMutableEntityType, String)

Gets a navigation property on the given entity type. Returns null if no navigation property is found.

FindNavigation(IMutableEntityType, MemberInfo)

Gets a navigation property on the given entity type. Returns null if no navigation property is found.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableNavigation FindNavigation (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, System.Reflection.MemberInfo memberInfo);
static member FindNavigation : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IMutableNavigation
<Extension()>
Public Function FindNavigation (entityType As IMutableEntityType, memberInfo As MemberInfo) As IMutableNavigation

Parameters

entityType
IMutableEntityType

The entity type.

memberInfo
MemberInfo

The navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Applies to

FindNavigation(IMutableEntityType, PropertyInfo)

Gets a navigation property on the given entity type. Returns null if no navigation property is found.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableNavigation FindNavigation (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, System.Reflection.PropertyInfo propertyInfo);
static member FindNavigation : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * System.Reflection.PropertyInfo -> Microsoft.EntityFrameworkCore.Metadata.IMutableNavigation
<Extension()>
Public Function FindNavigation (entityType As IMutableEntityType, propertyInfo As PropertyInfo) As IMutableNavigation

Parameters

entityType
IMutableEntityType

The entity type to find the navigation property on.

propertyInfo
PropertyInfo

The navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Applies to

FindNavigation(IMutableEntityType, String)

Gets a navigation property on the given entity type. Returns null if no navigation property is found.

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