I am receiving the following warning:
No store type was specified for the decimal property 'PurchasePrice' on entity type 'ProductStatisticsKeylessEntity'. This will cause values to be silently truncated if they do not fit in the default precision and scale. Explicitly specify the SQL server column type that can accommodate all the values in 'OnModelCreating' using 'HasColumnType', specify precision and scale using 'HasPrecision', or configure a value converter using 'HasConversion'.
(emphasis mine)
I know how to set a precision and scale, but I want to know the EF default values - what exactly are the default precision and scale for decimal, float or double?
Perhaps the default values are good enough and i can set the precision/scale to the same values to hide the errors.