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