Share via


IStoreStoredProcedure.FindParameter Method

Definition

Overloads

FindParameter(IProperty)

Gets the parameter mapped to the given property. Returns null if no parameter is mapped to the given property.

FindParameter(String)

Gets the parameter with the given name. Returns null if no parameter with the given name is defined for the returned row set.

FindParameter(IProperty)

Gets the parameter mapped to the given property. Returns null if no parameter is mapped to the given property.

public Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureParameter? FindParameter (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member FindParameter : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureParameter
Public Function FindParameter (property As IProperty) As IStoreStoredProcedureParameter

Parameters

property
IProperty

Returns

Applies to

FindParameter(String)

Gets the parameter with the given name. Returns null if no parameter with the given name is defined for the returned row set.

public Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureParameter? FindParameter (string name);
abstract member FindParameter : string -> Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureParameter
Public Function FindParameter (name As String) As IStoreStoredProcedureParameter

Parameters

name
String

Returns

Applies to