PropertyBuilder.HasPrecision 方法

定义

重载

HasPrecision(Int32)

配置属性的精度。

HasPrecision(Int32, Int32)

配置属性的精度和小数位数。

HasPrecision(Int32)

配置属性的精度。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasPrecision (int precision);
abstract member HasPrecision : int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
override this.HasPrecision : int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
Public Overridable Function HasPrecision (precision As Integer) As PropertyBuilder

参数

precision
Int32

属性的精度。

返回

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

适用于

HasPrecision(Int32, Int32)

配置属性的精度和小数位数。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasPrecision (int precision, int scale);
abstract member HasPrecision : int * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
override this.HasPrecision : int * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
Public Overridable Function HasPrecision (precision As Integer, scale As Integer) As PropertyBuilder

参数

precision
Int32

属性的精度。

scale
Int32

属性的小数位数。

返回

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

适用于