80 references to Null
System.Data.Common (80)
System\Data\Common\SQLConvert.cs (1)
244
return SqlBoolean.
Null
;
System\Data\Common\SQLTypes\SQlBooleanStorage.cs (2)
19
: base(column, typeof(SqlBoolean), SqlBoolean.
Null
, SqlBoolean.
Null
, StorageType.SqlBoolean)
System\Data\SQLTypes\SQLBinary.cs (5)
210
return SqlBoolean.
Null
;
231
return SqlBoolean.
Null
;
242
return SqlBoolean.
Null
;
253
return SqlBoolean.
Null
;
265
return SqlBoolean.
Null
;
System\Data\SQLTypes\SQLBoolean.cs (20)
55
/// Gets whether the current <see cref='Value'/> is <see cref='SqlBoolean.
Null
'/>.
132
return SqlBoolean.
Null
;
158
return SqlBoolean.
Null
;
171
return SqlBoolean.
Null
;
199
return SqlBoolean.
Null
;
225
return (x.IsNull || y.IsNull) ?
Null
: new SqlBoolean(x.m_value != y.m_value);
238
return x.IsNull ?
Null
: new SqlBoolean(x.Value != 0);
244
return x.IsNull ?
Null
: new SqlBoolean(x.Value != 0);
250
return x.IsNull ?
Null
: new SqlBoolean(x.Value != 0);
256
return x.IsNull ?
Null
: new SqlBoolean(x.Value != 0);
262
return x.IsNull ?
Null
: new SqlBoolean(x.Value != 0.0);
268
return x.IsNull ?
Null
: new SqlBoolean(x.Value != 0.0);
274
return x.IsNull ?
Null
: (x != SqlMoney.Zero);
280
return x.IsNull ? SqlBoolean.
Null
: new SqlBoolean(x._data1 != 0 || x._data2 != 0 ||
288
return x.IsNull ?
Null
: SqlBoolean.Parse(x.Value);
294
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value == y.m_value);
304
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value < y.m_value);
309
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value > y.m_value);
314
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value <= y.m_value);
319
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value >= y.m_value);
System\Data\SQLTypes\SQLByte.cs (5)
268
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value == y.m_value);
278
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value < y.m_value);
283
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value > y.m_value);
288
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value <= y.m_value);
293
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value >= y.m_value);
System\Data\SQLTypes\SQLDateTime.cs (5)
507
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_day == y.m_day && x.m_time == y.m_time);
517
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
:
523
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
:
529
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
:
535
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
:
System\Data\SQLTypes\SQLDecimal.cs (5)
2865
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.CompareNm(y) == EComparison.EQ);
2875
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.CompareNm(y) == EComparison.LT);
2880
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.CompareNm(y) == EComparison.GT);
2886
return SqlBoolean.
Null
;
2897
return SqlBoolean.
Null
;
System\Data\SQLTypes\SQLDouble.cs (5)
222
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value == y.m_value);
232
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value < y.m_value);
237
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value > y.m_value);
242
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value <= y.m_value);
247
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value >= y.m_value);
System\Data\SQLTypes\SQLGuid.cs (5)
162
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
:
173
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(Compare(x, y) == EComparison.LT);
178
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(Compare(x, y) == EComparison.GT);
184
return SqlBoolean.
Null
;
193
return SqlBoolean.
Null
;
System\Data\SQLTypes\SQLInt16.cs (5)
272
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value == y.m_value);
282
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value < y.m_value);
287
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value > y.m_value);
292
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value <= y.m_value);
297
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value >= y.m_value);
System\Data\SQLTypes\SQLInt32.cs (5)
287
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value == y.m_value);
297
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value < y.m_value);
302
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value > y.m_value);
307
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value <= y.m_value);
312
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value >= y.m_value);
System\Data\SQLTypes\SQLInt64.cs (5)
346
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value == y.m_value);
356
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value < y.m_value);
361
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value > y.m_value);
366
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value <= y.m_value);
371
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x.m_value >= y.m_value);
System\Data\SQLTypes\SQLMoney.cs (5)
374
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value == y._value);
384
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value < y._value);
389
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value > y._value);
394
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value <= y._value);
399
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value >= y._value);
System\Data\SQLTypes\SQLSingle.cs (5)
231
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value == y._value);
241
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value < y._value);
246
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value > y._value);
251
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value <= y._value);
256
return (x.IsNull || y.IsNull) ? SqlBoolean.
Null
: new SqlBoolean(x._value >= y._value);
System\Data\SQLTypes\SQLString.cs (2)
413
return SqlBoolean.
Null
;
443
return SqlBoolean.
Null
;