IMutableComplexProperty 接口

定义

表示结构类型的复杂属性。

public interface IMutableComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IMutablePropertyBase, Microsoft.EntityFrameworkCore.Metadata.IReadOnlyComplexProperty
type IMutableComplexProperty = interface
    interface IReadOnlyComplexProperty
    interface IReadOnlyPropertyBase
    interface IReadOnlyAnnotatable
    interface IMutablePropertyBase
    interface IMutableAnnotatable
Public Interface IMutableComplexProperty
Implements IMutablePropertyBase, IReadOnlyComplexProperty
实现

注解

此接口在模型创建期间使用,并允许修改元数据。 生成模型后, IComplexProperty 表示相同元数据的只读视图。

有关详细信息和示例,请参阅 为实体类型和关系建模

属性

ClrType

获取此类似属性的对象包含的值的类型。

(继承自 IReadOnlyPropertyBase)
ComplexType

获取关联的复杂类型。

DeclaringType

获取此属性类对象所属的类型。

(继承自 IReadOnlyPropertyBase)
FieldInfo

FieldInfo获取此属性类似对象的基础 CLR 字段的 。 这可能 null 适用于阴影属性,或者如果支持字段未知。

(继承自 IReadOnlyPropertyBase)
IsCollection

获取一个值,该值指示此属性是否表示集合。

(继承自 IReadOnlyComplexProperty)
IsNullable

获取或设置一个值,该值指示此属性是否可以包含 null

Item[String]

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

(继承自 IMutableAnnotatable)
Name

获取此属性类似对象的名称。

(继承自 IReadOnlyPropertyBase)
PropertyInfo

PropertyInfo获取类似于此属性的对象的基础 CLR 属性的 。 这可能 null 适用于阴影属性或直接映射到字段。

(继承自 IReadOnlyPropertyBase)
Sentinel

获取 sentinel 值,该值指示未设置此属性。

(继承自 IReadOnlyPropertyBase)

方法

AddAnnotation(String, Object)

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

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

向 对象添加批注。

(继承自 IMutableAnnotatable)
AnnotationsToDebugString(Int32)

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

(继承自 IReadOnlyAnnotatable)
FindAnnotation(String)

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

(继承自 IMutableAnnotatable)
GetAnnotation(String)

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

(继承自 IReadOnlyAnnotatable)
GetAnnotations()

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

(继承自 IMutableAnnotatable)
GetFieldName()

获取此属性的后备字段的名称,或者 null 如果后备字段未知,则为 。

(继承自 IReadOnlyPropertyBase)
GetPropertyAccessMode()

PropertyAccessMode获取用于此属性类似对象的 。

(继承自 IReadOnlyPropertyBase)
IsIndexerProperty()

获取一个值,该值指示此是否为索引器属性。 索引器属性是通过实体类上的索引器访问的属性。

(继承自 IReadOnlyPropertyBase)
IsShadowProperty()

获取一个值,该值指示此是否为阴影属性。 阴影属性是实体类中没有相应属性的阴影属性。 属性的当前值存储在 中, ChangeTracker 而不是存储在实体类的实例中。

(继承自 IReadOnlyPropertyBase)
RemoveAnnotation(String)

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

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

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

(继承自 IMutableAnnotatable)
SetField(String)

设置此属性应使用的基础 CLR 字段。

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

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

(继承自 IMutableAnnotatable)
SetPropertyAccessMode(Nullable<PropertyAccessMode>)

PropertyAccessMode设置要用于此属性的 。

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

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

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

(继承自 IReadOnlyComplexProperty)

显式接口实现

IReadOnlyComplexProperty.IsNullable

获取一个值,该值指示此属性是否可以包含 null

适用于