30 references to Null
System.Data (30)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
548
result = SqlInt32.
Null
;
1092
SqlInt32.
Null
, // SqlDbType.Int
fx\src\data\System\Data\Common\SQLConvert.cs (2)
60
return SqlInt32.
Null
;
88
return SqlInt32.
Null
;
fx\src\data\System\Data\Common\SQLTypes\SQLInt32Storage.cs (2)
25
: base(column, typeof(SqlInt32), SqlInt32.
Null
, SqlInt32.
Null
, StorageType.SqlInt32) {
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
576
return SqlInt32.
Null
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
397
else if (sqlType == typeof(SqlInt32)) return SqlInt32.
Null
;
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (2)
3044
return SqlInt32.
Null
;
3049
return n.IsNull ? SqlInt32.
Null
:
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (20)
118
return SqlInt32.
Null
;
129
return x.IsNull ?
Null
: new SqlInt32(-x.m_value);
136
return x.IsNull ?
Null
: new SqlInt32(~x.m_value);
148
return
Null
;
162
return
Null
;
176
return
Null
;
191
return
Null
;
208
return
Null
;
225
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt32(x.m_value & y.m_value);
232
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt32(x.m_value | y.m_value);
239
return(x.IsNull || y.IsNull) ?
Null
: new SqlInt32(x.m_value ^ y.m_value);
250
return x.IsNull ?
Null
: new SqlInt32((int)x.ByteValue);
258
return x.IsNull ?
Null
: new SqlInt32(x.Value);
266
return x.IsNull ?
Null
: new SqlInt32(x.Value);
278
return
Null
;
293
return
Null
;
308
return
Null
;
322
return x.IsNull ?
Null
: new SqlInt32(x.ToInt32());
331
return SqlInt32.
Null
;
351
return x.IsNull ? SqlInt32.
Null
: new SqlInt32(Int32.Parse(x.Value, (IFormatProvider)null));