22 references to Null
System.Data.Common (22)
System\Data\Common\SQLTypes\SQLInt64Storage.cs (2)
19
: base(column, typeof(SqlInt64), SqlInt64.
Null
, SqlInt64.
Null
, StorageType.SqlInt64)
System\Data\SQLTypes\SQLInt64.cs (20)
81
return SqlInt64.
Null
;
89
return x.IsNull ?
Null
: new SqlInt64(-x.m_value);
94
return x.IsNull ?
Null
: new SqlInt64(~x.m_value);
103
return
Null
;
115
return
Null
;
127
return
Null
;
190
return
Null
;
206
return
Null
;
222
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt64(x.m_value & y.m_value);
227
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt64(x.m_value | y.m_value);
232
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt64(x.m_value ^ y.m_value);
240
return x.IsNull ?
Null
: new SqlInt64(x.ByteValue);
246
return x.IsNull ?
Null
: new SqlInt64(x.Value);
252
return x.IsNull ?
Null
: new SqlInt64(x.Value);
258
return x.IsNull ?
Null
: new SqlInt64(x.Value);
267
return
Null
;
280
return
Null
;
292
return x.IsNull ?
Null
: new SqlInt64(x.ToInt64());
299
return SqlInt64.
Null
;
334
return x.IsNull ?
Null
: new SqlInt64(long.Parse(x.Value, null));