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)
3519if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLInt16Storage.cs (1)
173return (values[record].IsNull);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
305return x.IsNull ? Null : new SqlBoolean(x.Value != 0);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
255if (x.IsNull) 261return x.IsNull ? Null : new SqlByte((byte)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1720return x.IsNull ? Null : new SqlDecimal((int)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
227return x.IsNull ? Null : new SqlDouble((double)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (38)
109return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 128return x.IsNull ? Null : new SqlInt16((short)-x.m_value); 135return x.IsNull ? Null : new SqlInt16((short)~x.m_value); 146if (x.IsNull || y.IsNull) 160if (x.IsNull || y.IsNull) 174if (x.IsNull || y.IsNull) 189if (x.IsNull || y.IsNull) 206if (x.IsNull || y.IsNull) 224return(x.IsNull || y.IsNull) ? Null : new SqlInt16((short)(x.m_value & y.m_value)); 231return(x.IsNull || y.IsNull) ? Null : new SqlInt16((short)((ushort)x.m_value | (ushort)y.m_value)); 238return(x.IsNull || y.IsNull) ? Null : new SqlInt16((short)(x.m_value ^ y.m_value)); 352return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 366return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 373return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 380return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 387return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 534if (IsNull) 535return value.IsNull ? 0 : -1; 536else if (value.IsNull) 555if (i.IsNull || IsNull) 556return (i.IsNull && IsNull); 566return IsNull ? 0 : Value.GetHashCode(); 594if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
266return x.IsNull ? Null : new SqlInt32(x.Value);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
312return x.IsNull ? Null : new SqlInt64((long)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
369return x.IsNull ? Null : new SqlMoney((int)x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
231return x.IsNull ? Null : new SqlSingle((float)(x.Value));
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
527return x.IsNull ? Null : new SqlString((x.Value).ToString((IFormatProvider)null));