Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
62 references to IsNull
System.Data (62)
fx\src\data\Microsoft\SqlServer\Server\MetadataUtilsSmi.cs (1)
656if (!value.IsNull) {
fx\src\data\Microsoft\SqlServer\Server\SqlRecordBuffer.cs (1)
262Debug.Assert(!value.IsNull, "Null input");
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3489if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLDecimalStorage.cs (1)
172return (values[record].IsNull);
fx\src\data\System\Data\Sql\SqlMetaData.cs (2)
1230if (!sd.IsNull) 1464if (!value.IsNull && (value.Precision != Precision || value.Scale != Scale))
fx\src\data\System\Data\SqlClient\SqlParameter.cs (2)
1620if (((SqlDecimal) value).IsNull) // MDAC #79648 1630if (((SqlDecimal) value).IsNull) // MDAC #79648
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
353return x.IsNull ? SqlBoolean.Null : new SqlBoolean(x.m_data1 != 0 || x.m_data2 != 0 ||
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (47)
828if (IsNull) 835SQLDebug.Check(!IsNull); 840SQLDebug.Check(!IsNull); 849if (IsNull) 860if (IsNull) 871if (IsNull) 882if (IsNull) 927if (IsNull) 1115if (IsNull) 1131if (IsNull) 1172if (x.IsNull) 1192if (x.IsNull || y.IsNull) 1387if (x.IsNull || y.IsNull) 1616if (x.IsNull || y.IsNull) 1781if (IsNull) 2219SQLDebug.Check(!IsNull, "!IsNull", "In AdjustScale"); 2293if (n.IsNull) 2309if (n.IsNull) 2770return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.EQ); 2784return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.LT); 2791return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.CompareNm(y) == EComparison.GT); 2798if (x.IsNull || y.IsNull) 2810if (x.IsNull || y.IsNull) 2970if (n.IsNull) 2985if (n.IsNull) 3014if (n.IsNull) 3043if (n.IsNull) 3049return n.IsNull ? SqlInt32.Null : 3054if (n.IsNull) 3145if (n.IsNull) 3183if (IsNull) 3184return value.IsNull ? 0 : -1; 3185else if (value.IsNull) 3204if (i.IsNull || IsNull) 3205return (i.IsNull && IsNull); 3215if (IsNull) 3280if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
267return x.IsNull ? Null : new SqlDouble(x.ToDouble());
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
330if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
369if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
412return x.IsNull ? SqlMoney.Null : new SqlMoney(x.Value);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
266return x.IsNull ? Null : new SqlSingle(x.ToDouble());
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
567return x.IsNull ? Null : new SqlString(x.ToString());