IStoreStoredProcedure.FindResultColumn 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
FindResultColumn(IProperty) |
Gets the result column mapped to the given property. Returns |
FindResultColumn(String) |
Gets the result column with the given name. Returns |
FindResultColumn(IProperty)
Gets the result column mapped to the given property. Returns null
if no result column is mapped to the given property.
public Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureResultColumn? FindResultColumn (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member FindResultColumn : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureResultColumn
Public Function FindResultColumn (property As IProperty) As IStoreStoredProcedureResultColumn
Parameters
- property
- IProperty
Returns
Applies to
FindResultColumn(String)
Gets the result column with the given name. Returns null
if no result column with the given name is defined for the returned row set.
public Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureResultColumn? FindResultColumn (string name);
abstract member FindResultColumn : string -> Microsoft.EntityFrameworkCore.Metadata.IStoreStoredProcedureResultColumn
Public Function FindResultColumn (name As String) As IStoreStoredProcedureResultColumn
Parameters
- name
- String
Returns
Applies to
Entity Framework