IPropertyParameterBindingFactory.FindParameter 方法

定义

重载

FindParameter(IComplexType, Type, String)

ParameterBinding 模型中查找 专用 IPropertyBase 的 。

FindParameter(IEntityType, Type, String)

ParameterBinding 模型中查找 专用 IPropertyBase 的 。

FindParameter(IComplexType, Type, String)

ParameterBinding 模型中查找 专用 IPropertyBase 的 。

public Microsoft.EntityFrameworkCore.Metadata.ParameterBinding? FindParameter (Microsoft.EntityFrameworkCore.Metadata.IComplexType complexType, Type parameterType, string parameterName);
abstract member FindParameter : Microsoft.EntityFrameworkCore.Metadata.IComplexType * Type * string -> Microsoft.EntityFrameworkCore.Metadata.ParameterBinding
Public Function FindParameter (complexType As IComplexType, parameterType As Type, parameterName As String) As ParameterBinding

参数

complexType
IComplexType

定义 时 IPropertyBase 所基于的复杂类型。

parameterType
Type

参数名称。

parameterName
String

参数类型。

返回

参数绑定,如果未找到,则为 。null

适用于

FindParameter(IEntityType, Type, String)

ParameterBinding 模型中查找 专用 IPropertyBase 的 。

public Microsoft.EntityFrameworkCore.Metadata.ParameterBinding FindParameter (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, Type parameterType, string parameterName);
public Microsoft.EntityFrameworkCore.Metadata.ParameterBinding? FindParameter (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, Type parameterType, string parameterName);
abstract member FindParameter : Microsoft.EntityFrameworkCore.Metadata.IEntityType * Type * string -> Microsoft.EntityFrameworkCore.Metadata.ParameterBinding
Public Function FindParameter (entityType As IEntityType, parameterType As Type, parameterName As String) As ParameterBinding

参数

entityType
IEntityType

定义 的 IPropertyBase 实体类型。

parameterType
Type

参数名称。

parameterName
String

参数类型。

返回

参数绑定,如果未找到,则为 。null

适用于