Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
56 references to IsNull
System.Data.Common (56)
System\Data\Common\SQLTypes\SQLDecimalStorage.cs (1)
192return (_values[record].IsNull);
System\Data\SQLTypes\SQLBoolean.cs (1)
280return x.IsNull ? SqlBoolean.Null : new SqlBoolean(x._data1 != 0 || x._data2 != 0 ||
System\Data\SQLTypes\SQLDecimal.cs (48)
826if (IsNull) 834Debug.Assert(!IsNull); 840Debug.Assert(!IsNull); 848if (IsNull) 858if (IsNull) 868if (IsNull) 882if (IsNull) 925if (IsNull) 1128if (IsNull) 1145if (IsNull) 1167if (IsNull) 1209if (x.IsNull) 1228if (x.IsNull || y.IsNull) 1426if (x.IsNull || y.IsNull) 1662if (x.IsNull || y.IsNull) 1812if (IsNull) 2287Debug.Assert(!IsNull, "!IsNull", "In AdjustScale"); 2368if (n.IsNull) 2382if (n.IsNull) 2872return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.EQ); 2882return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.LT); 2887return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.GT); 2892if (x.IsNull || y.IsNull) 2903if (x.IsNull || y.IsNull) 3088if (n.IsNull) 3101if (n.IsNull) 3129if (n.IsNull) 3157if (n.IsNull) 3163return n.IsNull ? SqlInt32.Null : 3169if (n.IsNull) 3262if (n.IsNull) 3297if (IsNull) 3298return value.IsNull ? 0 : -1; 3299else if (value.IsNull) 3315other.IsNull || IsNull ? other.IsNull && IsNull : 3321if (IsNull) 3381if (IsNull)
System\Data\SQLTypes\SQLDouble.cs (1)
204return x.IsNull ? Null : new SqlDouble(x.ToDouble());
System\Data\SQLTypes\SQLInt32.cs (1)
256if (x.IsNull)
System\Data\SQLTypes\SQLInt64.cs (1)
298if (x.IsNull)
System\Data\SQLTypes\SQLMoney.cs (1)
368return x.IsNull ? SqlMoney.Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
206return x.IsNull ? Null : new SqlSingle(x.ToDouble());
System\Data\SQLTypes\SQLString.cs (1)
502return x.IsNull ? Null : new SqlString(x.ToString());