I have a C# EF Core app. When I try to save data to the DB using the dbcontext.saveall(), I receive the following exception.
"The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Parameter 631 ("@p628"): The supplied value is not a valid instance of data type float. Check the source data for invalid values. An example of an invalid value is data of numeric type with scale greater than precision."
My properties on the entity are doubles and EF created float columns in the DB. Should I change the data type?
Thanks