Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
50 references to IsNull
System.Data (50)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3539if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLInt64Storage.cs (1)
174return (values[record].IsNull);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
321return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
283if (x.IsNull) 289return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1736return x.IsNull ? Null : new SqlDecimal(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
243return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
283if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
277if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (38)
110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 129return x.IsNull ? Null : new SqlInt64(-x.m_value); 136return x.IsNull ? Null : new SqlInt64(~x.m_value); 147if (x.IsNull || y.IsNull) 161if (x.IsNull || y.IsNull) 175if (x.IsNull || y.IsNull) 236if (x.IsNull || y.IsNull) 253if (x.IsNull || y.IsNull) 271return(x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value & y.m_value); 278return(x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value | y.m_value); 285return(x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value ^ y.m_value); 419return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 433return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 440return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 447return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 454return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 600if (IsNull) 601return value.IsNull ? 0 : -1; 602else if (value.IsNull) 621if (i.IsNull || IsNull) 622return (i.IsNull && IsNull); 632return IsNull ? 0 : Value.GetHashCode(); 660if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
385return x.IsNull ? Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
249return x.IsNull ? Null : new SqlSingle((float)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
543return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));