30 references to Null
System.Data (30)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
338return SqlByte.Null; 1104SqlByte.Null, // SqlDbType.TinyInt
fx\src\data\System\Data\Common\SQLConvert.cs (1)
21return SqlByte.Null;
fx\src\data\System\Data\Common\SQLTypes\SQLByteStorage.cs (2)
25: base(column, typeof(SqlByte), SqlByte.Null, SqlByte.Null, StorageType.SqlByte) {
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
458return SqlByte.Null;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
395else if (sqlType == typeof(SqlByte)) return SqlByte.Null;
fx\src\data\System\Data\SQLTypes\SQLByte.cs (23)
118return SqlByte.Null; 128return x.IsNull ? Null : new SqlByte((byte)~x.m_value); 140return Null; 154return Null; 168return Null; 182return Null; 196return Null; 210return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value & y.m_value)); 217return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value | y.m_value)); 224return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value ^ y.m_value)); 236return x.IsNull ? Null : new SqlByte((byte)(x.ByteValue)); 247return x.IsNull ? Null : new SqlByte(checked((byte)x.ToInt32())); 256return Null; 261return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 270return Null; 275return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 284return Null; 289return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 298return Null; 303return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 312return Null; 317return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 334return x.IsNull ? Null : new SqlByte(Byte.Parse(x.Value, (IFormatProvider)null));