SqlServerPropertyBuilderExtensions.ForSqlServerHasDefaultValue 方法

定义

重载

ForSqlServerHasDefaultValue(PropertyBuilder, Object)

配置属性在面向SQL Server时映射到的列的默认值。

ForSqlServerHasDefaultValue<TProperty>(PropertyBuilder<TProperty>, Object)

配置属性在面向SQL Server时映射到的列的默认值。

ForSqlServerHasDefaultValue(PropertyBuilder, Object)

配置属性在面向SQL Server时映射到的列的默认值。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder ForSqlServerHasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, object value);
static member ForSqlServerHasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function ForSqlServerHasDefaultValue (propertyBuilder As PropertyBuilder, value As Object) As PropertyBuilder

参数

propertyBuilder
PropertyBuilder

要配置的属性的生成器。

value
Object

列的默认值。

返回

同一生成器实例,以便可以链接多个调用。

适用于

ForSqlServerHasDefaultValue<TProperty>(PropertyBuilder<TProperty>, Object)

配置属性在面向SQL Server时映射到的列的默认值。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> ForSqlServerHasDefaultValue<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, object value);
static member ForSqlServerHasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function ForSqlServerHasDefaultValue(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), value As Object) As PropertyBuilder(Of TProperty)

类型参数

TProperty

要配置的属性的类型。

参数

propertyBuilder
PropertyBuilder<TProperty>

要配置的属性的生成器。

value
Object

列的默认值。

返回

同一生成器实例,以便可以链接多个调用。

适用于