如何使用SqlDecimal构造函数(Byte,Byte,Boolean,Int32 [])

时间:2013-11-19 21:37:28

标签: c# sql-server sql-types

我找不到很多关于使用SqlDecimal构造函数重载的资源。

decimal d = 2539075.3809m;
SqlDecimal.ConvertToPrecScale(d, 20, 4); //works
new SqlDecimal(20, 4, d >= 0, decimal.GetBits(d)); //throws Arithmetic Overflow

0 个答案:

没有答案