SqlServerPropertyAnnotations 类

定义

通过 SqlServer(IMutableProperty)访问的特定于SQL Server注释的属性。

public class SqlServerPropertyAnnotations : Microsoft.EntityFrameworkCore.Metadata.RelationalPropertyAnnotations, Microsoft.EntityFrameworkCore.Metadata.ISqlServerPropertyAnnotations
type SqlServerPropertyAnnotations = class
    inherit RelationalPropertyAnnotations
    interface ISqlServerPropertyAnnotations
    interface IRelationalPropertyAnnotations
Public Class SqlServerPropertyAnnotations
Inherits RelationalPropertyAnnotations
Implements ISqlServerPropertyAnnotations
继承
SqlServerPropertyAnnotations
实现

构造函数

SqlServerPropertyAnnotations(IProperty)

为给定 IProperty的注释构造 实例。

SqlServerPropertyAnnotations(RelationalAnnotations)

构造由给定批注帮助程序表示的 IProperty 的注释的 实例。

字段

ProviderFullAnnotationNames

通过 SqlServer(IMutableProperty)访问的特定于SQL Server注释的属性。

(继承自 RelationalPropertyAnnotations)

属性

Annotations

表示 RelationalAnnotations 要批注的 的 IProperty 帮助程序。

(继承自 RelationalPropertyAnnotations)
ColumnName

属性映射到的列的名称。

(继承自 RelationalPropertyAnnotations)
ColumnType

属性映射到的列的数据库类型。

(继承自 RelationalPropertyAnnotations)
ComputedColumnSql

为此属性创建列时应使用的计算约束 SQL 表达式。

(继承自 RelationalPropertyAnnotations)
DefaultValue

为此属性创建列时要在列定义中使用的默认值。

(继承自 RelationalPropertyAnnotations)
DefaultValueSql

为此属性创建列时应使用的默认约束 SQL 表达式。

(继承自 RelationalPropertyAnnotations)
HiLoSequenceName

获取或设置要与 一起使用的序列名称 ForSqlServerUseSequenceHiLo(PropertyBuilder, String, String)

HiLoSequenceSchema

获取或设置序列要使用的架构 ForSqlServerUseSequenceHiLo(PropertyBuilder, String, String)

IsFixedLength

一个标志,指示 属性是否能够仅存储固定长度的数据,如字符串。

(继承自 RelationalPropertyAnnotations)
Property

IProperty 批注的 。

(继承自 RelationalPropertyAnnotations)
ShouldThrowOnConflict

指示在设置冲突的配置时是否应引发异常。 使用 Fluent API 生成以实现最后一次调用胜出语义时,通常会重写这一点。

(继承自 RelationalPropertyAnnotations)
ShouldThrowOnInvalidConfiguration

指示在设置无效配置时是否应引发异常。

(继承自 RelationalPropertyAnnotations)
ValueGenerationStrategy

获取或设置 SqlServerValueGenerationStrategy 要用于 属性的 。

如果未为 属性设置策略,则要使用的策略将从 IModel

方法

CanSetComputedColumnSql(String)

检查为 属性设置计算的 SQL 表达式是否有效。

CanSetDefaultValue(Object)

检查设置属性的默认值是否有效。

CanSetDefaultValueSql(String)

检查为属性设置默认 SQL 表达式是否有效。

CanSetValueGenerationStrategy(Nullable<SqlServerValueGenerationStrategy>)

检查为 属性设置给定 SqlServerValueGenerationStrategy 的 是否有效。

ClearAllServerGeneratedValues()

将 属性的值生成重置为默认值。

FindHiLoSequence()

ISequence 模型中查找要使用的 ForSqlServerUseSequenceHiLo(PropertyBuilder, String, String)

GetAnnotations(IEntityType)

RelationalEntityTypeAnnotations获取给定 IEntityType 的实例,该RelationalAnnotations实例维护此实例用于按约定控制设置批注的语义。

(继承自 RelationalPropertyAnnotations)
GetAnnotations(IProperty)

RelationalPropertyAnnotations获取给定 IProperty 的实例,该RelationalAnnotations实例维护此实例用于按约定控制设置批注的语义。

(继承自 RelationalPropertyAnnotations)
GetComputedColumnSql(Boolean)

获取属性的计算 SQL 表达式集。

GetDefaultValue(Boolean)

获取为 属性设置的默认值。

GetDefaultValueSql(Boolean)

获取属性的默认 SQL 表达式集。

GetSqlServerValueGenerationStrategy(Boolean)

获取或设置 SqlServerValueGenerationStrategy 要用于 属性的 。

SetColumnName(String)

尝试使用正在使用 ColumnName 的 语义 RelationalAnnotations 设置 。

(继承自 RelationalPropertyAnnotations)
SetColumnType(String)

尝试使用正在使用 ColumnType 的 语义 RelationalAnnotations 设置 。

(继承自 RelationalPropertyAnnotations)
SetComputedColumnSql(String)

尝试使用正在使用 ComputedColumnSql 的 语义 RelationalAnnotations 设置 。

(继承自 RelationalPropertyAnnotations)
SetDefaultValue(Object)

尝试使用正在使用 DefaultValue 的 语义 RelationalAnnotations 设置 。

(继承自 RelationalPropertyAnnotations)
SetDefaultValueSql(String)

尝试使用正在使用 DefaultValueSql 的 语义 RelationalAnnotations 设置 。

(继承自 RelationalPropertyAnnotations)
SetFixedLength(Boolean)

将 属性配置为能够仅存储固定长度的数据,例如字符串。

(继承自 RelationalPropertyAnnotations)
SetHiLoSequenceName(String)

设置要与 一起使用的 ForSqlServerUseSequenceHiLo(PropertyBuilder, String, String)序列名称。

SetHiLoSequenceSchema(String)

设置要与 一起使用 ForSqlServerUseSequenceHiLo(PropertyBuilder, String, String)的序列的架构。

SetValueGenerationStrategy(Nullable<SqlServerValueGenerationStrategy>)

SqlServerValueGenerationStrategy设置要用于 属性的 。

适用于