Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
22 references to IsNull
System.Data.Common (22)
System\Data\Common\SQLTypes\SQLBinaryStorage.cs (1)
84return (_values[record].IsNull);
System\Data\SQLTypes\SQLBinary.cs (19)
131if (x.IsNull || y.IsNull) 209if (x.IsNull || y.IsNull) 230if (x.IsNull || y.IsNull) 241if (x.IsNull || y.IsNull) 252if (x.IsNull || y.IsNull) 264if (x.IsNull || y.IsNull) 348if (IsNull) 349return value.IsNull ? 0 : -1; 350else if (value.IsNull) 366other.IsNull || IsNull ? other.IsNull && IsNull :
System\Data\SQLTypes\SQLBytes.cs (1)
85public SqlBytes(SqlBinary value) : this(value.IsNull ? null : value.Value!)
System\Data\SQLTypes\SQLGuid.cs (1)
156return x.IsNull ? Null : new SqlGuid(x.Value);