RelationalPropertyBuilderExtensions.CanSetDefaultValue 方法

定义

返回一个值,该值指示是否可以将给定值设置为列的默认值。

public static bool CanSetDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, object value, bool fromDataAnnotation = false);
public static bool CanSetDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, object? value, bool fromDataAnnotation = false);
static member CanSetDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * obj * bool -> bool
<Extension()>
Public Function CanSetDefaultValue (propertyBuilder As IConventionPropertyBuilder, value As Object, Optional fromDataAnnotation As Boolean = false) As Boolean

参数

propertyBuilder
IConventionPropertyBuilder

要配置的属性的生成器。

value
Object

列的默认值。

fromDataAnnotation
Boolean

指示配置是否是使用数据注释指定的。

返回

true 如果给定值可以设置为列的默认值,则为 。

注解

有关详细信息和示例,请参阅 数据库默认值

适用于