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
StoreParameter
Gets the target parameter.
IStoreStoredProcedureParameter StoreParameter { 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.