26 references to Null
System.Data.Common (26)
System\Data\Common\SQLConvert.cs (1)
17
return SqlByte.
Null
;
System\Data\Common\SQLTypes\SQLByteStorage.cs (2)
19
: base(column, typeof(SqlByte), SqlByte.
Null
, SqlByte.
Null
, StorageType.SqlByte)
System\Data\SQLTypes\SQLByte.cs (23)
80
return SqlByte.
Null
;
88
return x.IsNull ?
Null
: new SqlByte(unchecked((byte)~x.m_value));
98
return
Null
;
110
return
Null
;
122
return
Null
;
134
return
Null
;
147
return
Null
;
160
return (x.IsNull || y.IsNull) ?
Null
: new SqlByte((byte)(x.m_value & y.m_value));
165
return (x.IsNull || y.IsNull) ?
Null
: new SqlByte((byte)(x.m_value | y.m_value));
170
return (x.IsNull || y.IsNull) ?
Null
: new SqlByte((byte)(x.m_value ^ y.m_value));
180
return x.IsNull ?
Null
: new SqlByte(x.ByteValue);
189
return x.IsNull ?
Null
: new SqlByte(checked((byte)x.ToInt32()));
196
return
Null
;
201
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
208
return
Null
;
213
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
220
return
Null
;
225
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
232
return
Null
;
237
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
244
return
Null
;
249
return x.IsNull ?
Null
: new SqlByte((byte)(x.Value));
262
return x.IsNull ?
Null
: new SqlByte(byte.Parse(x.Value, null));