22 references to Null
System.Data.Common (22)
System\Data\Common\SQLConvert.cs (1)
35
return SqlInt16.
Null
;
System\Data\Common\SQLTypes\SQLInt16Storage.cs (2)
19
: base(column, typeof(SqlInt16), SqlInt16.
Null
, SqlInt16.
Null
, StorageType.SqlInt16)
System\Data\SQLTypes\SQLInt16.cs (19)
79
return SqlInt16.
Null
;
87
return x.IsNull ?
Null
: new SqlInt16((short)-x.m_value);
92
return x.IsNull ?
Null
: new SqlInt16((short)~x.m_value);
101
return
Null
;
113
return
Null
;
125
return
Null
;
138
return
Null
;
154
return
Null
;
170
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt16((short)(x.m_value & y.m_value));
175
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt16(unchecked((short)((ushort)x.m_value | (ushort)y.m_value)));
180
return (x.IsNull || y.IsNull) ?
Null
: new SqlInt16((short)(x.m_value ^ y.m_value));
188
return x.IsNull ?
Null
: new SqlInt16(x.ByteValue);
194
return x.IsNull ?
Null
: new SqlInt16(x.Value);
203
return
Null
;
216
return
Null
;
229
return
Null
;
242
return
Null
;
254
return x.IsNull ?
Null
: new SqlInt16(checked((short)x.ToInt32()));
266
return x.IsNull ?
Null
: new SqlInt16(short.Parse(x.Value, null));