I need to save a few values on a SQL table columns and map them to Entity Framework Entity.
The values are 2.50; 233.50, 52.43 ... So the precision is not height.
What SQL data type should I use and to what NET data type should I map it?
I could use SQL float to NET Double ... But is it the appropriated one?