5 writes to Scale
System.Data.Entity (5)
System\Data\Common\Internal\DbTypeMap.cs (2)
42
internal static readonly TypeUsage Decimal = CreateType(PrimitiveTypeKind.Decimal, new FacetValues { Precision = (byte?)null,
Scale
= (byte?)null });
44
internal static readonly TypeUsage Currency = CreateType(PrimitiveTypeKind.Decimal, new FacetValues { Precision = (byte?)null,
Scale
= (byte?)null });
System\Data\Metadata\Edm\FacetValues.cs (1)
118
values.
Scale
= (byte?)null;
System\Data\Metadata\Edm\TypeUsage.cs (2)
299
new FacetValues{Precision = precision,
Scale
= scale });
318
new FacetValues{ Precision = TypeUsage.DefaultPrecisionFacetValue,
Scale
= TypeUsage.DefaultScaleFacetValue });