RelationalPropertyExtensions.GetScale 方法

定义

重载

GetScale(IProperty, StoreObjectIdentifier)

获取此属性中允许的数据小数位数。 例如,如果 属性为 , Decimal 则这是小数位数的最大位数。

GetScale(IReadOnlyProperty, StoreObjectIdentifier)

获取此属性中允许的数据小数位数。 例如,如果 属性为 , Decimal 则这是小数位数的最大位数。

GetScale(IProperty, StoreObjectIdentifier)

获取此属性中允许的数据小数位数。 例如,如果 属性为 , Decimal 则这是小数位数的最大位数。

public static int? GetScale (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetScale : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetScale (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)

参数

property
IProperty

属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

小数位数,如果未 null 定义,则为 。

适用于

GetScale(IReadOnlyProperty, StoreObjectIdentifier)

获取此属性中允许的数据小数位数。 例如,如果 属性为 , Decimal 则这是小数位数的最大位数。

public static int? GetScale (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetScale : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetScale (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)

参数

property
IReadOnlyProperty

属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

小数位数,如果未 null 定义,则为 。

适用于