Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
40 references to IsNull
System.Data.Common (40)
System\Data\Common\SQLTypes\SQLDoubleStorage.cs (1)
193return (_values[record].IsNull);
System\Data\SQLTypes\SQLBoolean.cs (1)
262return x.IsNull ? Null : new SqlBoolean(x.Value != 0.0);
System\Data\SQLTypes\SQLByte.cs (2)
243if (x.IsNull) 249return x.IsNull ? Null : new SqlByte((byte)(x.Value));
System\Data\SQLTypes\SQLDecimal.cs (1)
1788return x.IsNull ? SqlDecimal.Null : new SqlDecimal(x.Value);
System\Data\SQLTypes\SQLDouble.cs (29)
80return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null!); 95return x.IsNull ? Null : new SqlDouble(-x.m_value); 104if (x.IsNull || y.IsNull) 117if (x.IsNull || y.IsNull) 130if (x.IsNull || y.IsNull) 143if (x.IsNull || y.IsNull) 222return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 232return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 237return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 242return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 247return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 380if (IsNull) 381return value.IsNull ? 0 : -1; 382else if (value.IsNull) 398other.IsNull || IsNull ? other.IsNull && IsNull : 402public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode(); 424if (IsNull)
System\Data\SQLTypes\SQLInt16.cs (1)
241if (x.IsNull)
System\Data\SQLTypes\SQLInt32.cs (1)
237if (x.IsNull)
System\Data\SQLTypes\SQLInt64.cs (1)
279if (x.IsNull)
System\Data\SQLTypes\SQLMoney.cs (1)
352return x.IsNull ? Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
216return x.IsNull ? Null : new SqlSingle(x.Value);
System\Data\SQLTypes\SQLString.cs (1)
496return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null!));