Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
51 references to IsNull
System.Data (51)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3529if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLInt32Storage.cs (1)
173return (values[record].IsNull);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
313return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
269if (x.IsNull) 275return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1728return x.IsNull ? Null : new SqlDecimal(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
235return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
268if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (39)
83if (IsNull) 110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 129return x.IsNull ? Null : new SqlInt32(-x.m_value); 136return x.IsNull ? Null : new SqlInt32(~x.m_value); 147if (x.IsNull || y.IsNull) 161if (x.IsNull || y.IsNull) 175if (x.IsNull || y.IsNull) 190if (x.IsNull || y.IsNull) 207if (x.IsNull || y.IsNull) 225return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value & y.m_value); 232return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value | y.m_value); 239return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value ^ y.m_value); 364return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 378return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 385return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 392return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 399return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 546if (IsNull) 547return value.IsNull ? 0 : -1; 548else if (value.IsNull) 567if (i.IsNull || IsNull) 568return (i.IsNull && IsNull); 578return IsNull ? 0 : Value.GetHashCode(); 606if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
320return x.IsNull ? Null : new SqlInt64((long)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
377return x.IsNull ? Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
240return x.IsNull ? Null : new SqlSingle((float)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
535return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));