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