Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
26 references to IsNull
System.Data (26)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3509if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLGuidStorage.cs (1)
76return (values[record].IsNull);
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
556_isNull = value.IsNull;
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (1)
242return x.IsNull ? SqlBinary.Null : new SqlBinary(x.ToByteArray());
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (21)
113if (IsNull) 149if (IsNull) 208return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.EQ); 222return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.LT); 229return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.GT); 236if (x.IsNull || y.IsNull) 247if (x.IsNull || y.IsNull) 321if (IsNull) 322return value.IsNull ? 0 : -1; 323else if (value.IsNull) 342if (i.IsNull || IsNull) 343return (i.IsNull && IsNull); 353return IsNull ? 0 : Value.GetHashCode(); 380if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
591return x.IsNull ? Null : new SqlString(x.ToString());