다음을 통해 공유


EntityTypeExtensions.FindNavigation 메서드

정의

오버로드

FindNavigation(IEntityType, MemberInfo)

지정된 엔터티 형식의 탐색 속성을 가져옵니다. 탐색 속성을 찾을 수 없는 경우 를 반환 null 합니다.

FindNavigation(IEntityType, PropertyInfo)

지정된 엔터티 형식의 탐색 속성을 가져옵니다. 탐색 속성이 없으면 null을 반환합니다.

FindNavigation(IEntityType, String)

지정된 엔터티 형식의 탐색 속성을 가져옵니다. 탐색 속성을 찾을 수 없는 경우 를 반환 null 합니다.

FindNavigation(IEntityType, MemberInfo)

지정된 엔터티 형식의 탐색 속성을 가져옵니다. 탐색 속성을 찾을 수 없는 경우 를 반환 null 합니다.

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

매개 변수

entityType
IEntityType

엔터티 형식입니다.

memberInfo
MemberInfo

엔터티 클래스의 탐색 속성입니다.

반환

탐색 속성이거나 null , 찾을 수 없는 경우 입니다.

적용 대상

FindNavigation(IEntityType, PropertyInfo)

지정된 엔터티 형식의 탐색 속성을 가져옵니다. 탐색 속성이 없으면 null을 반환합니다.

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

매개 변수

entityType
IEntityType

탐색 속성을 찾을 엔터티 형식입니다.

propertyInfo
PropertyInfo

엔터티 클래스의 탐색 속성입니다.

반환

탐색 속성이거나, 찾을 수 없는 경우 null입니다.

적용 대상

FindNavigation(IEntityType, String)

지정된 엔터티 형식의 탐색 속성을 가져옵니다. 탐색 속성을 찾을 수 없는 경우 를 반환 null 합니다.

public static Microsoft.EntityFrameworkCore.Metadata.INavigation FindNavigation (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, string name);
static member FindNavigation : Microsoft.EntityFrameworkCore.Metadata.IEntityType * string -> Microsoft.EntityFrameworkCore.Metadata.INavigation
<Extension()>
Public Function FindNavigation (entityType As IEntityType, name As String) As INavigation

매개 변수

entityType
IEntityType

엔터티 형식입니다.

name
String

엔터티 클래스의 탐색 속성 이름입니다.

반환

탐색 속성이거나 null , 찾을 수 없는 경우 입니다.

적용 대상