IMutableStoredProcedureResultColumn 接口

定义

表示存储过程结果列。

public interface IMutableStoredProcedureResultColumn : Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable, Microsoft.EntityFrameworkCore.Metadata.IReadOnlyStoredProcedureResultColumn
type IMutableStoredProcedureResultColumn = interface
    interface IReadOnlyStoredProcedureResultColumn
    interface IReadOnlyAnnotatable
    interface IMutableAnnotatable
Public Interface IMutableStoredProcedureResultColumn
Implements IMutableAnnotatable, IReadOnlyStoredProcedureResultColumn
实现

属性

ForRowsAffected

获取一个值,该值指示结果列是否将保存受存储过程影响的行。

(继承自 IReadOnlyStoredProcedureResultColumn)
Item[String]

获取或设置具有给定名称的批注的值。

(继承自 IMutableAnnotatable)
Name

获取或设置结果列名称。

PropertyName

获取映射到此结果列的属性的名称。

(继承自 IReadOnlyStoredProcedureResultColumn)
StoredProcedure

获取此结果列所属的存储过程。

方法

AddAnnotation(String, Object)

向此对象添加批注。 如果已存在具有指定名称的批注,则引发 。

(继承自 IMutableAnnotatable)
AddAnnotations(IEnumerable<IAnnotation>)

向 对象添加批注。

(继承自 IMutableAnnotatable)
AnnotationsToDebugString(Int32)

获取对象上声明的所有注释的调试字符串。

(继承自 IReadOnlyAnnotatable)
FindAnnotation(String)

获取具有给定名称的批注,如果不存在,则返回 null。

(继承自 IMutableAnnotatable)
GetAnnotation(String)

获取具有给定名称的批注,如果不存在,则引发该批注。

(继承自 IReadOnlyAnnotatable)
GetAnnotations()

获取当前 对象上的所有注释。

(继承自 IMutableAnnotatable)
RemoveAnnotation(String)

从此 对象中删除给定的批注。

(继承自 IMutableAnnotatable)
SetAnnotation(String, Object)

设置存储在给定键下的批注。 如果具有指定名称的批注已存在,则覆盖现有批注。

(继承自 IMutableAnnotatable)
SetOrRemoveAnnotation(String, Object)

设置存储在给定名称下的批注。 如果具有指定名称的批注已存在,则覆盖现有批注。 如果 null 提供了 ,则删除现有批注。

(继承自 IMutableAnnotatable)
ToDebugString(MetadataDebugStringOptions, Int32)

创建给定元数据的可读表示形式。

警告:不要依赖于返回的字符串的格式。 它仅用于调试,并且可能会在版本之间任意更改。

(继承自 IReadOnlyStoredProcedureResultColumn)

适用于