PropertiesConfigurationBuilder<TProperty>.HavePrecision 方法

定义

重载

HavePrecision(Int32)

配置属性的精度。

HavePrecision(Int32, Int32)

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

HavePrecision(Int32)

配置属性的精度。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<TProperty> HavePrecision (int precision);
override this.HavePrecision : int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<'Property>
Public Overridable Function HavePrecision (precision As Integer) As PropertiesConfigurationBuilder(Of TProperty)

参数

precision
Int32

属性的精度。

返回

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

适用于

HavePrecision(Int32, Int32)

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

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<TProperty> HavePrecision (int precision, int scale);
override this.HavePrecision : int * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<'Property>
Public Overridable Function HavePrecision (precision As Integer, scale As Integer) As PropertiesConfigurationBuilder(Of TProperty)

参数

precision
Int32

属性的精度。

scale
Int32

属性的小数位数。

返回

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

适用于