Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
56 references to IsNull
System.Data.Common (56)
System\Data\Common\SQLTypes\SQLDecimalStorage.cs (1)
192
return (_values[record].
IsNull
);
System\Data\SQLTypes\SQLBoolean.cs (1)
280
return x.
IsNull
? SqlBoolean.Null : new SqlBoolean(x._data1 != 0 || x._data2 != 0 ||
System\Data\SQLTypes\SQLDecimal.cs (48)
826
if (
IsNull
)
834
Debug.Assert(!
IsNull
);
840
Debug.Assert(!
IsNull
);
848
if (
IsNull
)
858
if (
IsNull
)
868
if (
IsNull
)
882
if (
IsNull
)
925
if (
IsNull
)
1128
if (
IsNull
)
1145
if (
IsNull
)
1167
if (
IsNull
)
1209
if (x.
IsNull
)
1228
if (x.
IsNull
|| y.
IsNull
)
1426
if (x.
IsNull
|| y.
IsNull
)
1662
if (x.
IsNull
|| y.
IsNull
)
1812
if (
IsNull
)
2287
Debug.Assert(!
IsNull
, "!IsNull", "In AdjustScale");
2368
if (n.
IsNull
)
2382
if (n.
IsNull
)
2872
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.EQ);
2882
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.LT);
2887
return (x.
IsNull
|| y.
IsNull
) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.GT);
2892
if (x.
IsNull
|| y.
IsNull
)
2903
if (x.
IsNull
|| y.
IsNull
)
3088
if (n.
IsNull
)
3101
if (n.
IsNull
)
3129
if (n.
IsNull
)
3157
if (n.
IsNull
)
3163
return n.
IsNull
? SqlInt32.Null :
3169
if (n.
IsNull
)
3262
if (n.
IsNull
)
3297
if (
IsNull
)
3298
return value.
IsNull
? 0 : -1;
3299
else if (value.
IsNull
)
3315
other.
IsNull
||
IsNull
? other.
IsNull
&&
IsNull
:
3321
if (
IsNull
)
3381
if (
IsNull
)
System\Data\SQLTypes\SQLDouble.cs (1)
204
return x.
IsNull
? Null : new SqlDouble(x.ToDouble());
System\Data\SQLTypes\SQLInt32.cs (1)
256
if (x.
IsNull
)
System\Data\SQLTypes\SQLInt64.cs (1)
298
if (x.
IsNull
)
System\Data\SQLTypes\SQLMoney.cs (1)
368
return x.
IsNull
? SqlMoney.Null : new SqlMoney(x.Value);
System\Data\SQLTypes\SQLSingle.cs (1)
206
return x.
IsNull
? Null : new SqlSingle(x.ToDouble());
System\Data\SQLTypes\SQLString.cs (1)
502
return x.
IsNull
? Null : new SqlString(x.ToString());