22 references to Null
System.Data (22)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
612
result = SqlSingle.
Null
;
1097
SqlSingle.
Null
, // SqlDbType.Real
fx\src\data\System\Data\Common\SQLConvert.cs (1)
211
return SqlSingle.
Null
;
fx\src\data\System\Data\Common\SQLTypes\SQLSingleStorage.cs (2)
25
: base(column, typeof(SqlSingle), SqlSingle.
Null
, SqlSingle.
Null
, StorageType.SqlSingle) {
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
612
return SqlSingle.
Null
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
389
if (sqlType == typeof(SqlSingle)) return SqlSingle.
Null
;
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (15)
123
return SqlSingle.
Null
;
134
return x.IsNull ?
Null
: new SqlSingle(-x.m_value);
146
return
Null
;
161
return
Null
;
176
return
Null
;
191
return
Null
;
213
return x.IsNull ?
Null
: new SqlSingle(x.ByteValue);
222
return x.IsNull ?
Null
: new SqlSingle((float)(x.Value));
231
return x.IsNull ?
Null
: new SqlSingle((float)(x.Value));
240
return x.IsNull ?
Null
: new SqlSingle((float)(x.Value));
249
return x.IsNull ?
Null
: new SqlSingle((float)(x.Value));
257
return x.IsNull ?
Null
: new SqlSingle(x.ToDouble());
266
return x.IsNull ?
Null
: new SqlSingle(x.ToDouble());
278
return x.IsNull ?
Null
: new SqlSingle(x.Value);
288
return SqlSingle.
Null
;