다음을 통해 공유


RelationalModelExtensions.FindDbFunction 메서드

정의

오버로드

FindDbFunction(IReadOnlyModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IReadOnlyModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IMutableModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IMutableModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IConventionModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IConventionModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

FindDbFunction(IReadOnlyModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IReadOnlyDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyModel model, string name);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyModel * string -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyDbFunction
<Extension()>
Public Function FindDbFunction (model As IReadOnlyModel, name As String) As IReadOnlyDbFunction

매개 변수

model
IReadOnlyModel

함수를 찾을 모델입니다.

name
String

함수의 모델 이름입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IReadOnlyModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IReadOnlyDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyModel model, System.Reflection.MethodInfo method);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyModel * System.Reflection.MethodInfo -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyDbFunction
<Extension()>
Public Function FindDbFunction (model As IReadOnlyModel, method As MethodInfo) As IReadOnlyDbFunction

매개 변수

model
IReadOnlyModel

함수를 찾을 모델입니다.

method
MethodInfo

MethodInfo 함수에 매핑되는 메서드의 입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IMutableModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableDbFunction FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string name);
public static Microsoft.EntityFrameworkCore.Metadata.IMutableDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string name);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableDbFunction
<Extension()>
Public Function FindDbFunction (model As IMutableModel, name As String) As IMutableDbFunction

매개 변수

model
IMutableModel

함수를 찾을 모델입니다.

name
String

함수의 모델 이름입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IMutableModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableDbFunction FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, System.Reflection.MethodInfo method);
public static Microsoft.EntityFrameworkCore.Metadata.IMutableDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, System.Reflection.MethodInfo method);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * System.Reflection.MethodInfo -> Microsoft.EntityFrameworkCore.Metadata.IMutableDbFunction
<Extension()>
Public Function FindDbFunction (model As IMutableModel, method As MethodInfo) As IMutableDbFunction

매개 변수

model
IMutableModel

함수를 찾을 모델입니다.

method
MethodInfo

MethodInfo 함수에 매핑되는 메서드의 입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IDbFunction FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IModel model, System.Reflection.MethodInfo method);
public static Microsoft.EntityFrameworkCore.Metadata.IDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IModel model, System.Reflection.MethodInfo method);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IModel * System.Reflection.MethodInfo -> Microsoft.EntityFrameworkCore.Metadata.IDbFunction
<Extension()>
Public Function FindDbFunction (model As IModel, method As MethodInfo) As IDbFunction

매개 변수

model
IModel

함수를 찾을 모델입니다.

method
MethodInfo

MethodInfo 함수에 매핑되는 메서드의 입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IConventionModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IConventionDbFunction FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string name);
public static Microsoft.EntityFrameworkCore.Metadata.IConventionDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string name);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * string -> Microsoft.EntityFrameworkCore.Metadata.IConventionDbFunction
<Extension()>
Public Function FindDbFunction (model As IConventionModel, name As String) As IConventionDbFunction

매개 변수

model
IConventionModel

함수를 찾을 모델입니다.

name
String

함수의 모델 이름입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IConventionModel, MethodInfo)

지정된 MethodInfo가 나타내는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IConventionDbFunction FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, System.Reflection.MethodInfo method);
public static Microsoft.EntityFrameworkCore.Metadata.IConventionDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, System.Reflection.MethodInfo method);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * System.Reflection.MethodInfo -> Microsoft.EntityFrameworkCore.Metadata.IConventionDbFunction
<Extension()>
Public Function FindDbFunction (model As IConventionModel, method As MethodInfo) As IConventionDbFunction

매개 변수

model
IConventionModel

함수를 찾을 모델입니다.

method
MethodInfo

MethodInfo 함수에 매핑되는 메서드의 입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상

FindDbFunction(IModel, String)

지정된 이름으로 표시되는 메서드에 매핑되는 함수를 찾습니다.

public static Microsoft.EntityFrameworkCore.Metadata.IDbFunction FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IModel model, string name);
public static Microsoft.EntityFrameworkCore.Metadata.IDbFunction? FindDbFunction (this Microsoft.EntityFrameworkCore.Metadata.IModel model, string name);
static member FindDbFunction : Microsoft.EntityFrameworkCore.Metadata.IModel * string -> Microsoft.EntityFrameworkCore.Metadata.IDbFunction
<Extension()>
Public Function FindDbFunction (model As IModel, name As String) As IDbFunction

매개 변수

model
IModel

함수를 찾을 모델입니다.

name
String

함수의 모델 이름입니다.

반환

함수이거나 null 메서드가 매핑되지 않은 경우 입니다.

적용 대상