MutableEntityTypeExtensions.FindNavigation メソッド

定義

オーバーロード

FindNavigation(IMutableEntityType, MemberInfo)

指定したエンティティ型のナビゲーション プロパティを取得します。 nullナビゲーション プロパティが見つからない場合は を返します。

FindNavigation(IMutableEntityType, PropertyInfo)

指定したエンティティ型のナビゲーション プロパティを取得します。 ナビゲーション プロパティが見つからない場合は null を返します。

FindNavigation(IMutableEntityType, String)

指定したエンティティ型のナビゲーション プロパティを取得します。 nullナビゲーション プロパティが見つからない場合は を返します。

FindNavigation(IMutableEntityType, MemberInfo)

指定したエンティティ型のナビゲーション プロパティを取得します。 nullナビゲーション プロパティが見つからない場合は を返します。

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

パラメーター

entityType
IMutableEntityType

エンティティの型。

memberInfo
MemberInfo

エンティティ クラスのナビゲーション プロパティ。

戻り値

ナビゲーション プロパティ。 null 何も見つからない場合は 。

適用対象

FindNavigation(IMutableEntityType, PropertyInfo)

指定したエンティティ型のナビゲーション プロパティを取得します。 ナビゲーション プロパティが見つからない場合は null を返します。

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

パラメーター

entityType
IMutableEntityType

ナビゲーション プロパティを検索するエンティティの種類。

propertyInfo
PropertyInfo

エンティティ クラスのナビゲーション プロパティ。

戻り値

ナビゲーション プロパティ。見つからない場合は null。

適用対象

FindNavigation(IMutableEntityType, String)

指定したエンティティ型のナビゲーション プロパティを取得します。 nullナビゲーション プロパティが見つからない場合は を返します。

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

パラメーター

entityType
IMutableEntityType

エンティティの型。

name
String

エンティティ クラスのナビゲーション プロパティの名前。

戻り値

ナビゲーション プロパティ。 null 何も見つからない場合は 。

適用対象