Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
24 references to IsNull
System.Data.Common (24)
System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (1)
120
return (_values[record].
IsNull
);
System\Data\SQLTypes\SQLDateTime.cs (22)
347
if (
IsNull
)
381
return x.
IsNull
? Null : FromDateTime(ToDateTime(x) + t);
387
return x.
IsNull
? Null : FromDateTime(ToDateTime(x) - t);
519
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.m_day == y.m_day && x.m_time == y.m_time);
529
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
535
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
541
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
547
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null :
618
if (
IsNull
)
619
return value.
IsNull
? 0 : -1;
620
else if (value.
IsNull
)
636
other.
IsNull
||
IsNull
? other.
IsNull
&&
IsNull
:
640
public override int GetHashCode() =>
IsNull
? 0 : Value.GetHashCode();
674
if (
IsNull
)
System\Data\SQLTypes\SQLString.cs (1)
514
return x.
IsNull
? Null : new SqlString(x.ToString());