Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
18 references to IsNull
System.Data.Common (18)
System\Data\Common\SQLTypes\SQLGuidStorage.cs (1)
85return (_values[record].IsNull);
System\Data\SQLTypes\SQLBinary.cs (1)
198return x.IsNull ? SqlBinary.Null : new SqlBinary(x.ToByteArray());
System\Data\SQLTypes\SQLGuid.cs (15)
118Debug.Assert(!x.IsNull); 119Debug.Assert(!y.IsNull); 162return (x.IsNull || y.IsNull) ? SqlBoolean.Null : 173return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.LT); 178return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.GT); 183if (x.IsNull || y.IsNull) 192if (x.IsNull || y.IsNull) 271if (IsNull) 272return value.IsNull ? 0 : -1; 273else if (value.IsNull)
System\Data\SQLTypes\SQLString.cs (1)
520return x.IsNull ? Null : new SqlString(x.ToString());