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)
3509
if ( value.
IsNull
) {
fx\src\data\System\Data\Common\SQLTypes\SQLGuidStorage.cs (1)
76
return (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)
242
return x.
IsNull
? SqlBinary.Null : new SqlBinary(x.ToByteArray());
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (21)
113
if (
IsNull
)
149
if (
IsNull
)
208
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.EQ);
222
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.LT);
229
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(Compare(x, y) == EComparison.GT);
236
if (x.
IsNull
|| y.
IsNull
)
247
if (x.
IsNull
|| y.
IsNull
)
321
if (
IsNull
)
322
return value.
IsNull
? 0 : -1;
323
else if (value.
IsNull
)
342
if (i.
IsNull
||
IsNull
)
343
return (i.
IsNull
&&
IsNull
);
353
return
IsNull
? 0 : Value.GetHashCode();
380
if (
IsNull
) {
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
591
return x.
IsNull
? Null : new SqlString(x.ToString());