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)
243money = SqlMoney.Null; 271return Null; 285return (x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x._value + y._value), 0); 297return (x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x._value - y._value), 0); 307return (x.IsNull || y.IsNull) ? Null : 313return (x.IsNull || y.IsNull) ? Null : 323return x.IsNull ? Null : new SqlMoney(x.ByteValue); 329return x.IsNull ? Null : new SqlMoney(x.Value); 335return x.IsNull ? Null : new SqlMoney(x.Value); 341return x.IsNull ? Null : new SqlMoney(x.Value); 347return x.IsNull ? Null : new SqlMoney(x.Value); 356return x.IsNull ? Null : new SqlMoney(x.Value); 362return x.IsNull ? Null : new SqlMoney(x.Value); 368return x.IsNull ? SqlMoney.Null : new SqlMoney(x.Value); 375return x.IsNull ? Null : new SqlMoney(decimal.Parse(x.Value, NumberStyles.Currency, null));