Interface IStoredProcedureResultColumnMapping
- Namespace
- Microsoft.EntityFrameworkCore.Metadata
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
Represents property mapping to a stored procedure result column.
public interface IStoredProcedureResultColumnMapping : IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable
- Inherited Members
Properties
ResultColumn
Gets the associated stored procedure result column.
IStoredProcedureResultColumn ResultColumn { get; }
Property Value
StoreResultColumn
Gets the target column.
IStoreStoredProcedureResultColumn StoreResultColumn { get; }
Property Value
StoredProcedureMapping
Gets the containing stored procedure mapping.
IStoredProcedureMapping StoredProcedureMapping { get; }
Property Value
Methods
ToDebugString(MetadataDebugStringOptions, int)
Creates a human-readable representation of the given metadata.
Warning: Do not rely on the format of the returned string. It is designed for debugging only and may change arbitrarily between releases.
string ToDebugString(MetadataDebugStringOptions options = 0, int indent = 0)
Parameters
options
MetadataDebugStringOptionsOptions for generating the string.
indent
intThe number of indent spaces to use before each new line.
Returns
- string
A human-readable representation.