Table of Contents

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

bool

Name

Gets the result column name.

string Name { get; }

Property Value

string

PropertyName

Gets the name of property mapped to this result column.

string? PropertyName { get; }

Property Value

string

StoredProcedure

Gets the stored procedure to which this result column belongs.

IReadOnlyStoredProcedure StoredProcedure { get; }

Property Value

IReadOnlyStoredProcedure

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.