decimal is a .NET (also other frameworks, rdbms and languages) value type that stores floating point numbers with decimal precision, instead of a binary one.
Is there any way of saving these values to a SQL CE database without using binary precision in the process?
Like the full version SQL Server, SQL Server CE supports the
numericdata type:In contrast to the
Decimaldata type in .NET, you will have to fix the precision and scale when creating anumericfield.