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)
238
money = SqlMoney.
Null
;
261
return
Null
;
275
return (x.IsNull || y.IsNull) ?
Null
: new SqlMoney(checked(x._value + y._value), 0);
287
return (x.IsNull || y.IsNull) ?
Null
: new SqlMoney(checked(x._value - y._value), 0);
297
return (x.IsNull || y.IsNull) ?
Null
:
303
return (x.IsNull || y.IsNull) ?
Null
:
313
return x.IsNull ?
Null
: new SqlMoney(x.ByteValue);
319
return x.IsNull ?
Null
: new SqlMoney(x.Value);
325
return x.IsNull ?
Null
: new SqlMoney(x.Value);
331
return x.IsNull ?
Null
: new SqlMoney(x.Value);
337
return x.IsNull ?
Null
: new SqlMoney(x.Value);
346
return x.IsNull ?
Null
: new SqlMoney(x.Value);
352
return x.IsNull ?
Null
: new SqlMoney(x.Value);
358
return x.IsNull ? SqlMoney.
Null
: new SqlMoney(x.Value);
365
return x.IsNull ?
Null
: new SqlMoney(decimal.Parse(x.Value, NumberStyles.Currency, null));