Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
27 references to IsNull
System.Data (27)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
2445
if (!value.
IsNull
) {
3479
if ( value.
IsNull
) {
fx\src\data\System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (1)
107
return (values[record].
IsNull
);
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
858
if (!value.
IsNull
)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (22)
340
if (
IsNull
)
370
return x.
IsNull
? Null : FromDateTime(ToDateTime(x) + t);
375
return x.
IsNull
? Null : FromDateTime(ToDateTime(x) - t);
502
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_day == y.m_day && x.m_time == y.m_time);
510
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
515
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
520
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
525
return(x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
588
if (
IsNull
)
589
return value.
IsNull
? 0 : -1;
590
else if (value.
IsNull
)
606
if (i.
IsNull
||
IsNull
)
607
return (i.
IsNull
&&
IsNull
);
614
return
IsNull
? 0 : Value.GetHashCode();
654
if (
IsNull
) {
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
583
return x.
IsNull
? Null : new SqlString(x.ToString());