Table of Contents

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

IStoredProcedureResultColumn

StoreResultColumn

Gets the target column.

IStoreStoredProcedureResultColumn StoreResultColumn { get; }

Property Value

IStoreStoredProcedureResultColumn

StoredProcedureMapping

Gets the containing stored procedure mapping.

IStoredProcedureMapping StoredProcedureMapping { get; }

Property Value

IStoredProcedureMapping

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 MetadataDebugStringOptions

Options for generating the string.

indent int

The number of indent spaces to use before each new line.

Returns

string

A human-readable representation.