Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
45 references to IsNull
System.Data (45)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
2464if (!value.IsNull && SqlDbType.SmallMoney == metaData.SqlDbType) { 3549if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLMoneyStorage.cs (1)
173return (values[record].IsNull);
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
847if (!value.IsNull)
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
345return x.IsNull ? Null : (x != SqlMoney.Zero);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
247return x.IsNull ? Null : new SqlByte(checked((byte)x.ToInt32()));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1744return x.IsNull ? Null : new SqlDecimal(x.ToDecimal());
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
259return x.IsNull ? Null : new SqlDouble(x.ToDouble());
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
328return x.IsNull ? Null : new SqlInt16(checked((short)x.ToInt32()));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
322return x.IsNull ? Null : new SqlInt32(x.ToInt32());
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
361return x.IsNull ? Null : new SqlInt64(x.ToInt64());
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (32)
163if(IsNull) 180if(IsNull) 199if(IsNull) 249if (this.IsNull) { 294if (x.IsNull) 310return(x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x.m_value + y.m_value), 0); 322return(x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x.m_value - y.m_value), 0); 333return (x.IsNull || y.IsNull) ? Null : 341return (x.IsNull || y.IsNull) ? Null : 432return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 446return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 453return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 460return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 467return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 585if (IsNull) 586return value.IsNull ? 0 : -1; 587else if (value.IsNull) 606if (i.IsNull || IsNull) 607return (i.IsNull && IsNull); 618return IsNull ? 0 : m_value.GetHashCode(); 647if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
257return x.IsNull ? Null : new SqlSingle(x.ToDouble());
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
575return x.IsNull ? Null : new SqlString(x.ToString());