26 references to Null
System.Data.Common (26)
System\Data\Common\SQLConvert.cs (1)
17return SqlByte.Null;
System\Data\Common\SQLTypes\SQLByteStorage.cs (2)
19: base(column, typeof(SqlByte), SqlByte.Null, SqlByte.Null, StorageType.SqlByte)
System\Data\SQLTypes\SQLByte.cs (23)
80return SqlByte.Null; 88return x.IsNull ? Null : new SqlByte(unchecked((byte)~x.m_value)); 98return Null; 110return Null; 122return Null; 134return Null; 147return Null; 160return (x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value & y.m_value)); 165return (x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value | y.m_value)); 170return (x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value ^ y.m_value)); 180return x.IsNull ? Null : new SqlByte(x.ByteValue); 189return x.IsNull ? Null : new SqlByte(checked((byte)x.ToInt32())); 196return Null; 201return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 208return Null; 213return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 220return Null; 225return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 232return Null; 237return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 244return Null; 249return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 262return x.IsNull ? Null : new SqlByte(byte.Parse(x.Value, null));