PropertyExtensions.GetScale(IProperty) Method

Definition

Gets the scale of data that is allowed in this property. For example, if the property is a Decimal then this is the maximum number of decimal places.

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

Parameters

property
IProperty

The property to get the scale of.

Returns

The scale, or null if none is defined.

Applies to