Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
27 references to IsNull
System.Data (27)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
2445if (!value.IsNull) { 3479if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (1)
107return (values[record].IsNull);
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
858if (!value.IsNull)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (22)
340if (IsNull) 370return x.IsNull ? Null : FromDateTime(ToDateTime(x) + t); 375return x.IsNull ? Null : FromDateTime(ToDateTime(x) - t); 502return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_day == y.m_day && x.m_time == y.m_time); 510return(x.IsNull || y.IsNull) ? SqlBoolean.Null : 515return(x.IsNull || y.IsNull) ? SqlBoolean.Null : 520return(x.IsNull || y.IsNull) ? SqlBoolean.Null : 525return(x.IsNull || y.IsNull) ? SqlBoolean.Null : 588if (IsNull) 589return value.IsNull ? 0 : -1; 590else if (value.IsNull) 606if (i.IsNull || IsNull) 607return (i.IsNull && IsNull); 614return IsNull ? 0 : Value.GetHashCode(); 654if (IsNull) {
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
583return x.IsNull ? Null : new SqlString(x.ToString());