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)
3499
if ( value.
IsNull
) {
fx\src\data\System\Data\Common\SQLTypes\SQLDoubleStorage.cs (1)
173
return(values[record].
IsNull
);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
329
return x.
IsNull
? Null : new SqlBoolean(x.Value != 0.0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
311
if (x.
IsNull
)
317
return x.
IsNull
? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1763
return x.
IsNull
? SqlDecimal.Null : new SqlDecimal(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (29)
113
return
IsNull
? SQLResource.NullString : m_value.ToString((IFormatProvider)null);
132
return x.
IsNull
? Null : new SqlDouble(-x.m_value);
143
if (x.
IsNull
|| y.
IsNull
)
158
if (x.
IsNull
|| y.
IsNull
)
173
if (x.
IsNull
|| y.
IsNull
)
188
if (x.
IsNull
|| y.
IsNull
)
292
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value);
306
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value);
313
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value);
320
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value);
327
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value);
445
if (
IsNull
)
446
return value.
IsNull
? 0 : -1;
447
else if (value.
IsNull
)
466
if (i.
IsNull
||
IsNull
)
467
return (i.
IsNull
&&
IsNull
);
477
return
IsNull
? 0 : Value.GetHashCode();
505
if (
IsNull
) {
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
313
if (x.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
307
if (x.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
346
if (x.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
404
return x.
IsNull
? Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
278
return x.
IsNull
? Null : new SqlSingle(x.Value);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
559
return x.
IsNull
? Null : new SqlString((x.Value).ToString((IFormatProvider)null));