If you have a float in MSSQLServer, to what do you map this in .NET?
Can you convert it to Double or will you loose numbers?
thx, Lieven Cardoen
|
|
If you have a float in MSSQLServer, to what do you map this in .NET? Can you convert it to Double or will you loose numbers? thx, Lieven Cardoen
|
|||
|
|
|
|
SQLServer T-SQL float and real type definitions can be found at MSDN. C# double definition can be found at MSDN as well, as can the float definition. |
||
|
|
|
|
Check out:
In your case SQL Server native type float maps to SQL Server CLR SqlDouble and then Double in .Net |
||
|
|
|
|
The automatic code generated by Microsoft XSD convert SQL float (default float) to C# double. |
||
|
|
|
|
It depends on the size of the SQL float. For plain "float" which is equivalent to float(53), you need to use a C# double. For float(24) or lower a C# float will be enough, or a double would work as well. |
||
|
|
|
|
From my recollection, most of the ORM tools will map it to a Decimal type, which will not lose precision like a double or float. |
||
|
|
|
|
C# has a float type, but it will convert to double just fine as well. |
||
|
|