Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
39 references to IsNull
System.Data (39)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3388if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQlBooleanStorage.cs (1)
105return (values[record].IsNull);
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (4)
640if ( !( colMetaData.IsAliased.IsNull ) ) { 644if ( !( colMetaData.IsKey.IsNull ) ) { 648if ( !( colMetaData.IsHidden.IsNull ) ) { 652if ( !( colMetaData.IsExpression.IsNull ) ) {
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1140if (null != qmd && !qmd.IsKey.IsNull && qmd.IsKey.Value) {
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (23)
232if (!IsNull) 243return IsNull ? SQLResource.NullString : Value.ToString((IFormatProvider)null); 282return(x.IsNull || y.IsNull) ? Null : new SqlBoolean(x.m_value != y.m_value); 371return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 385return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 392return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 399return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 406return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 525if (IsNull) 526return value.IsNull ? 0 : -1; 527else if (value.IsNull) 546if (i.IsNull || IsNull) 547return (i.IsNull && IsNull); 557return IsNull ? 0 : Value.GetHashCode(); 584if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
236return x.IsNull ? Null : new SqlByte((byte)(x.ByteValue));
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1704return x.IsNull ? Null : new SqlDecimal((int)x.ByteValue);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
211return x.IsNull ? Null : new SqlDouble((double)(x.ByteValue));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
250return x.IsNull ? Null : new SqlInt16((short)(x.ByteValue));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
250return x.IsNull ? Null : new SqlInt32((int)x.ByteValue);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
296return x.IsNull ? Null : new SqlInt64((long)x.ByteValue);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
353return x.IsNull ? Null : new SqlMoney((int)x.ByteValue);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
213return x.IsNull ? Null : new SqlSingle(x.ByteValue);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
511return x.IsNull ? Null : new SqlString((x.Value).ToString());