Interface IReadOnlyStoredProcedureResultColumn
- Namespace
- Microsoft.EntityFrameworkCore.Metadata
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
Represents a stored procedure result column.
public interface IReadOnlyStoredProcedureResultColumn : IReadOnlyAnnotatable
Properties
ForRowsAffected
Gets a value indicating whether the result column will hold the rows affected by the stored procedure.
bool ForRowsAffected { get; }
Property Value
Name
Gets the result column name.
string Name { get; }
Property Value
PropertyName
Gets the name of property mapped to this result column.
string? PropertyName { get; }
Property Value
StoredProcedure
Gets the stored procedure to which this result column belongs.
IReadOnlyStoredProcedure StoredProcedure { 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.