Share via


IStoreStoredProcedure.FindResultColumn Method

Definition

Overloads

FindResultColumn(IProperty)

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

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.

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