30 references to Null
System.Data (30)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
338
return SqlByte.
Null
;
1104
SqlByte.
Null
, // SqlDbType.TinyInt
fx\src\data\System\Data\Common\SQLConvert.cs (1)
21
return SqlByte.
Null
;
fx\src\data\System\Data\Common\SQLTypes\SQLByteStorage.cs (2)
25
: base(column, typeof(SqlByte), SqlByte.
Null
, SqlByte.
Null
, StorageType.SqlByte) {
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
458
return SqlByte.
Null
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
395
else if (sqlType == typeof(SqlByte)) return SqlByte.
Null
;
fx\src\data\System\Data\SQLTypes\SQLByte.cs (23)
118
return SqlByte.
Null
;
128
return x.IsNull ?
Null
: new SqlByte((byte)~x.m_value);
140
return
Null
;
154
return
Null
;
168
return
Null
;
182
return
Null
;
196
return
Null
;
210
return(x.IsNull || y.IsNull) ?
Null
: new SqlByte((byte)(x.m_value & y.m_value));
217
return(x.IsNull || y.IsNull) ?
Null
: new SqlByte((byte)(x.m_value | y.m_value));
224
return(x.IsNull || y.IsNull) ?
Null
: new SqlByte((byte)(x.m_value ^ y.m_value));
236
return x.IsNull ?
Null
: new SqlByte((byte)(x.ByteValue));
247
return x.IsNull ?
Null
: new SqlByte(checked((byte)x.ToInt32()));
256
return
Null
;
261
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
270
return
Null
;
275
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
284
return
Null
;
289
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
298
return
Null
;
303
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
312
return
Null
;
317
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
334
return x.IsNull ?
Null
: new SqlByte(Byte.Parse(x.Value, (IFormatProvider)null));