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) 1160if (IsNull) 1202if (x.IsNull) 1221if (x.IsNull || y.IsNull) 1419if (x.IsNull || y.IsNull) 1655if (x.IsNull || y.IsNull) 1805if (IsNull) 2280Debug.Assert(!IsNull, "!IsNull", "In AdjustScale"); 2361if (n.IsNull) 2375if (n.IsNull) 2865return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.EQ); 2875return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.LT); 2880return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.GT); 2885if (x.IsNull || y.IsNull) 2896if (x.IsNull || y.IsNull) 3081if (n.IsNull) 3094if (n.IsNull) 3122if (n.IsNull) 3150if (n.IsNull) 3156return n.IsNull ? SqlInt32.Null : 3162if (n.IsNull) 3255if (n.IsNull) 3290if (IsNull) 3291return value.IsNull ? 0 : -1; 3292else if (value.IsNull) 3308other.IsNull || IsNull ? other.IsNull && IsNull : 3314if (IsNull) 3374if (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)
358return 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());