AnnotatableBase 类

定义

支持读取和写入批注的类型的基类。

此类型通常由数据库提供程序 (和其他扩展) 使用。 它通常不用于应用程序代码。

public class AnnotatableBase : Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable
type AnnotatableBase = class
    interface IAnnotatable
    interface IReadOnlyAnnotatable
Public Class AnnotatableBase
Implements IAnnotatable
继承
AnnotatableBase
派生
实现

注解

有关详细信息 和示例,请参阅数据库提供程序和扩展的实现

构造函数

AnnotatableBase()

支持读取和写入批注的类型的基类。

此类型通常由数据库提供程序 (和其他扩展) 使用。 它通常不用于应用程序代码。

属性

IsReadOnly

指示当前对象是否为只读。

Item[String]

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

方法

AddAnnotation(String, Annotation)

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

AddAnnotation(String, Object)

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

AddAnnotations(IEnumerable<IAnnotation>)

向此对象添加批注。

AddAnnotations(IReadOnlyDictionary<String,Object>)

向此对象添加批注。

AddRuntimeAnnotation(String, Annotation)

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

AddRuntimeAnnotation(String, Object)

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

AddRuntimeAnnotations(IEnumerable<Annotation>)

向此对象添加运行时批注。

AddRuntimeAnnotations(IReadOnlyDictionary<String,Object>)

向此对象添加运行时批注。

CreateAnnotation(String, Object)

创建新批注。

CreateRuntimeAnnotation(String, Object)

创建新的运行时批注。

EnsureMutable()

如果模型为只读,则引发。

EnsureReadOnly()

如果模型不是只读的,则引发 。

FindAnnotation(String)

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

FindRuntimeAnnotation(String)

获取具有给定名称的运行时注释,如果不存在,则返回 null

GetAnnotation(String)

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

GetAnnotations()

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

GetOrAddRuntimeAnnotationValue<TValue,TArg>(String, Func<TArg,TValue>, TArg)

获取具有给定名称的运行时注释的值,如果不存在,请添加该值。

GetRuntimeAnnotations()

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

OnAnnotationSet(String, Annotation, Annotation)

设置或删除批注时调用。

RemoveAnnotation(String)

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

RemoveRuntimeAnnotation(String)

从此对象中删除给定的运行时注释。

SetAnnotation(String, Annotation, Annotation)

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

SetAnnotation(String, Object)

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

SetRuntimeAnnotation(String, Annotation, Annotation)

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

SetRuntimeAnnotation(String, Object)

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

显式接口实现

IAnnotatable.AddRuntimeAnnotation(String, Object)

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

IAnnotatable.FindRuntimeAnnotation(String)

获取具有给定名称的运行时注释,如果不存在,则返回 null

IAnnotatable.GetRuntimeAnnotations()

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

IAnnotatable.RemoveRuntimeAnnotation(String)

从此对象中删除给定的运行时注释。

IAnnotatable.SetRuntimeAnnotation(String, Object)

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

IReadOnlyAnnotatable.FindAnnotation(String)

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

IReadOnlyAnnotatable.GetAnnotations()

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

IReadOnlyAnnotatable.Item[String]

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

扩展方法

AnnotationsToDebugString(IAnnotatable, Int32)

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

适用于