18 references to Null
System.Data.Common (18)
System\Data\Common\SQLConvert.cs (1)
196return SqlMoney.Null;
System\Data\Common\SQLTypes\SQLMoneyStorage.cs (2)
19: base(column, typeof(SqlMoney), SqlMoney.Null, SqlMoney.Null, StorageType.SqlMoney)
System\Data\SQLTypes\SQLMoney.cs (15)
238money = SqlMoney.Null; 261return Null; 275return (x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x._value + y._value), 0); 287return (x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x._value - y._value), 0); 297return (x.IsNull || y.IsNull) ? Null : 303return (x.IsNull || y.IsNull) ? Null : 313return x.IsNull ? Null : new SqlMoney(x.ByteValue); 319return x.IsNull ? Null : new SqlMoney(x.Value); 325return x.IsNull ? Null : new SqlMoney(x.Value); 331return x.IsNull ? Null : new SqlMoney(x.Value); 337return x.IsNull ? Null : new SqlMoney(x.Value); 346return x.IsNull ? Null : new SqlMoney(x.Value); 352return x.IsNull ? Null : new SqlMoney(x.Value); 358return x.IsNull ? SqlMoney.Null : new SqlMoney(x.Value); 365return x.IsNull ? Null : new SqlMoney(decimal.Parse(x.Value, NumberStyles.Currency, null));