RelationalPropertyBuilderExtensions.HasDefaultValueSql 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
HasDefaultValueSql(IConventionPropertyBuilder, String, Boolean) |
配置属性在面向关系数据库时映射到的列的默认值表达式。 |
HasDefaultValueSql(PropertyBuilder, String) |
配置属性在面向关系数据库时映射到的列的默认值表达式。 |
HasDefaultValueSql(PropertyBuilder) |
配置属性在面向关系数据库时映射到的列的默认值表达式。 |
HasDefaultValueSql<TProperty>(PropertyBuilder<TProperty>) |
配置属性在面向关系数据库时映射到的列的默认值表达式。 |
HasDefaultValueSql<TProperty>(PropertyBuilder<TProperty>, String) |
配置属性在面向关系数据库时映射到的列的默认值表达式。 |
HasDefaultValueSql(IConventionPropertyBuilder, String, Boolean)
配置属性在面向关系数据库时映射到的列的默认值表达式。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder HasDefaultValueSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, string sql, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? HasDefaultValueSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, string? sql, bool fromDataAnnotation = false);
static member HasDefaultValueSql : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
<Extension()>
Public Function HasDefaultValueSql (propertyBuilder As IConventionPropertyBuilder, sql As String, Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder
参数
- propertyBuilder
- IConventionPropertyBuilder
要配置的属性的生成器。
- sql
- String
列的默认值的 SQL 表达式。
- fromDataAnnotation
- Boolean
指示配置是否是使用数据注释指定的。
返回
如果应用了配置,则为同一生成器实例, null
否则为 。
注解
有关详细信息和示例,请参阅 数据库默认值 。
适用于
HasDefaultValueSql(PropertyBuilder, String)
配置属性在面向关系数据库时映射到的列的默认值表达式。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValueSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, string sql);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValueSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, string? sql);
static member HasDefaultValueSql : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasDefaultValueSql (propertyBuilder As PropertyBuilder, sql As String) As PropertyBuilder
参数
- propertyBuilder
- PropertyBuilder
要配置的属性的生成器。
- sql
- String
列的默认值的 SQL 表达式。
返回
同一生成器实例,以便可以链接多个调用。
注解
有关详细信息和示例,请参阅 数据库默认值 。
适用于
HasDefaultValueSql(PropertyBuilder)
配置属性在面向关系数据库时映射到的列的默认值表达式。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValueSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder);
static member HasDefaultValueSql : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasDefaultValueSql (propertyBuilder As PropertyBuilder) As PropertyBuilder
参数
- propertyBuilder
- PropertyBuilder
要配置的属性的生成器。
返回
同一生成器实例,以便可以链接多个调用。
注解
在没有参数的情况下调用时,此方法告知 EF 列具有某种类型的默认值约束,而无需确切指定它是什么。 将 EF 映射到现有数据库时,这非常有用。
有关详细信息和示例,请参阅 数据库默认值 。
适用于
HasDefaultValueSql<TProperty>(PropertyBuilder<TProperty>)
配置属性在面向关系数据库时映射到的列的默认值表达式。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValueSql<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder);
static member HasDefaultValueSql : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasDefaultValueSql(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty)) As PropertyBuilder(Of TProperty)
类型参数
- TProperty
要配置的属性的类型。
参数
- propertyBuilder
- PropertyBuilder<TProperty>
要配置的属性的生成器。
返回
同一生成器实例,以便可以链接多个调用。
注解
在没有参数的情况下调用时,此方法告知 EF 列具有某种类型的默认值约束,而无需确切指定它是什么。 将 EF 映射到现有数据库时,这非常有用。
有关详细信息和示例,请参阅 数据库默认值 。
适用于
HasDefaultValueSql<TProperty>(PropertyBuilder<TProperty>, String)
配置属性在面向关系数据库时映射到的列的默认值表达式。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValueSql<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string sql);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValueSql<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string? sql);
static member HasDefaultValueSql : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasDefaultValueSql(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), sql As String) As PropertyBuilder(Of TProperty)
类型参数
- TProperty
要配置的属性的类型。
参数
- propertyBuilder
- PropertyBuilder<TProperty>
要配置的属性的生成器。
- sql
- String
列的默认值的 SQL 表达式。
返回
同一生成器实例,以便可以链接多个调用。
注解
有关详细信息和示例,请参阅 数据库默认值 。