Share via


RelationalTypeMapping.RelationalTypeMappingParameters.WithPrecisionAndScale Method

Definition

Creates a new RelationalTypeMapping.RelationalTypeMappingParameters parameter object with the given precision and scale

public Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping.RelationalTypeMappingParameters WithPrecisionAndScale (int? precision, int? scale);
member this.WithPrecisionAndScale : Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping.RelationalTypeMappingParameters
Public Function WithPrecisionAndScale (precision As Nullable(Of Integer), scale As Nullable(Of Integer)) As RelationalTypeMapping.RelationalTypeMappingParameters

Parameters

precision
Nullable<Int32>

The precision of data the property is configured to store, or null if no size is configured.

scale
Nullable<Int32>

The scale of data the property is configured to store, or null if no size is configured.

Returns

The new parameter object.

Applies to