10 references to SqlDecimal
System.Data (10)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (6)
883
value = new
SqlDecimal
(_SqlDataReaderRowSource.GetSqlDouble(sourceOrdinal).Value);
886
value = new
SqlDecimal
(_SqlDataReaderRowSource.GetSqlSingle(sourceOrdinal).Value);
947
return new
SqlDecimal
(((SqlSingle)currentRowValue).Value);
953
return new
SqlDecimal
(f);
960
return new
SqlDecimal
(((SqlDouble)currentRowValue).Value);
966
return new
SqlDecimal
(d);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (4)
1150
return new
SqlDecimal
(x);
1755
return x.IsNull ? SqlDecimal.Null : new
SqlDecimal
((double)(x.Value));
1763
return x.IsNull ? SqlDecimal.Null : new
SqlDecimal
(x.Value);
3152
n = new
SqlDecimal
(Math.Pow(dBaseNum, exp));