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