26 references to Null
System.Data (26)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
569
result = SqlInt64.
Null
;
1084
SqlInt64.
Null
, // SqlDbType.BigInt
fx\src\data\System\Data\Common\SQLTypes\SQLInt64Storage.cs (2)
25
: base(column, typeof(SqlInt64), SqlInt64.
Null
, SqlInt64.
Null
, StorageType.SqlInt64) {
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
588
return SqlInt64.
Null
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
398
else if (sqlType == typeof(SqlInt64)) return SqlInt64.
Null
;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (20)
118
return SqlInt64.
Null
;
129
return x.IsNull ?
Null
: new SqlInt64(-x.m_value);
136
return x.IsNull ?
Null
: new SqlInt64(~x.m_value);
148
return
Null
;
162
return
Null
;
176
return
Null
;
237
return
Null
;
254
return
Null
;
271
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt64(x.m_value & y.m_value);
278
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt64(x.m_value | y.m_value);
285
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt64(x.m_value ^ y.m_value);
296
return x.IsNull ?
Null
: new SqlInt64((long)x.ByteValue);
304
return x.IsNull ?
Null
: new SqlInt64((long)(x.Value));
312
return x.IsNull ?
Null
: new SqlInt64((long)(x.Value));
320
return x.IsNull ?
Null
: new SqlInt64((long)(x.Value));
332
return
Null
;
347
return
Null
;
361
return x.IsNull ?
Null
: new SqlInt64(x.ToInt64());
370
return SqlInt64.
Null
;
406
return x.IsNull ?
Null
: new SqlInt64(Int64.Parse(x.Value, (IFormatProvider)null));