Table of Contents

Interface IStoredProcedureParameterMapping

Namespace
Microsoft.EntityFrameworkCore.Metadata
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

Represents property mapping to a stored procedure parameter.

public interface IStoredProcedureParameterMapping : IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable
Inherited Members

Properties

Parameter

Gets the associated stored procedure parameter.

IStoredProcedureParameter Parameter { get; }

Property Value

IStoredProcedureParameter

StoreParameter

Gets the target parameter.

IStoreStoredProcedureParameter StoreParameter { get; }

Property Value

IStoreStoredProcedureParameter

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.