26 references to Null
System.Data.Common (26)
System\Data\Common\SQLConvert.cs (2)
54
return SqlInt32.
Null
;
77
return SqlInt32.
Null
;
System\Data\Common\SQLTypes\SQLInt32Storage.cs (2)
19
: base(column, typeof(SqlInt32), SqlInt32.
Null
, SqlInt32.
Null
, StorageType.SqlInt32)
System\Data\SQLTypes\SQLDecimal.cs (2)
3151
return SqlInt32.
Null
;
3156
return n.IsNull ? SqlInt32.
Null
:
System\Data\SQLTypes\SQLInt32.cs (20)
80
return SqlInt32.
Null
;
89
return x.IsNull ?
Null
: new SqlInt32(-x.m_value);
94
return x.IsNull ?
Null
: new SqlInt32(~x.m_value);
103
return
Null
;
115
return
Null
;
127
return
Null
;
140
return
Null
;
156
return
Null
;
172
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt32(x.m_value & y.m_value);
177
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt32(x.m_value | y.m_value);
182
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt32(x.m_value ^ y.m_value);
191
return x.IsNull ?
Null
: new SqlInt32(x.ByteValue);
197
return x.IsNull ?
Null
: new SqlInt32(x.Value);
203
return x.IsNull ?
Null
: new SqlInt32(x.Value);
212
return
Null
;
225
return
Null
;
238
return
Null
;
250
return x.IsNull ?
Null
: new SqlInt32(x.ToInt32());
257
return SqlInt32.
Null
;
275
return x.IsNull ? SqlInt32.
Null
: new SqlInt32(int.Parse(x.Value, null));