IStoreStoredProcedure.FindParameter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FindParameter(IProperty) |
Gets the parameter mapped to the given property. Returns |
FindParameter(String) |
Gets the parameter with the given name. Returns |
FindParameter(IProperty)
- Source:
- IStoreStoredProcedure.cs
- Source:
- IStoreStoredProcedure.cs
- Source:
- IStoreStoredProcedure.cs
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)
- Source:
- IStoreStoredProcedure.cs
- Source:
- IStoreStoredProcedure.cs
- Source:
- IStoreStoredProcedure.cs
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
Entity Framework