Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
41 references to IsNull
System.Data (41)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3564
if ( value.
IsNull
) {
fx\src\data\System\Data\Common\SQLTypes\SQLSingleStorage.cs (1)
174
return (values[record].
IsNull
);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
337
return x.
IsNull
? Null : new SqlBoolean(x.Value != 0.0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
297
if (x.
IsNull
)
303
return x.
IsNull
? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1755
return x.
IsNull
? SqlDecimal.Null : new SqlDecimal((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
251
return x.
IsNull
? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
298
if (x.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
292
if (x.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
331
if (x.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
396
return x.
IsNull
? Null : new SqlMoney((double)x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (29)
115
return
IsNull
? SQLResource.NullString : m_value.ToString((IFormatProvider)null);
134
return x.
IsNull
? Null : new SqlSingle(-x.m_value);
145
if (x.
IsNull
|| y.
IsNull
)
160
if (x.
IsNull
|| y.
IsNull
)
175
if (x.
IsNull
|| y.
IsNull
)
190
if (x.
IsNull
|| y.
IsNull
)
297
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value);
311
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value);
318
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value);
325
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value);
332
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value);
449
if (
IsNull
)
450
return value.
IsNull
? 0 : -1;
451
else if (value.
IsNull
)
470
if (i.
IsNull
||
IsNull
)
471
return (i.
IsNull
&&
IsNull
);
481
return
IsNull
? 0 : Value.GetHashCode();
509
if (
IsNull
) {
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
551
return x.
IsNull
? Null : new SqlString((x.Value).ToString((IFormatProvider)null));