Share via


IPropertyParameterBindingFactory.FindParameter Method

Definition

Overloads

FindParameter(IComplexType, Type, String)

Finds a ParameterBinding specifically for an IPropertyBase in the model.

FindParameter(IEntityType, Type, String)

Finds a ParameterBinding specifically for an IPropertyBase in the model.

FindParameter(IComplexType, Type, String)

Finds a ParameterBinding specifically for an IPropertyBase in the model.

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

Parameters

complexType
IComplexType

The complex type on which the IPropertyBase is defined.

parameterType
Type

The parameter name.

parameterName
String

The parameter type.

Returns

The parameter binding, or null if none was found.

Applies to

FindParameter(IEntityType, Type, String)

Finds a ParameterBinding specifically for an IPropertyBase in the model.

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

Parameters

entityType
IEntityType

The entity type on which the IPropertyBase is defined.

parameterType
Type

The parameter name.

parameterName
String

The parameter type.

Returns

The parameter binding, or null if none was found.

Applies to