22 references to Null
System.Data.Common (22)
System\Data\Common\SQLTypes\SQLInt64Storage.cs (2)
19: base(column, typeof(SqlInt64), SqlInt64.Null, SqlInt64.Null, StorageType.SqlInt64)
System\Data\SQLTypes\SQLInt64.cs (20)
81return SqlInt64.Null; 89return x.IsNull ? Null : new SqlInt64(-x.m_value); 94return x.IsNull ? Null : new SqlInt64(~x.m_value); 103return Null; 115return Null; 127return Null; 190return Null; 206return Null; 222return (x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value & y.m_value); 227return (x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value | y.m_value); 232return (x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value ^ y.m_value); 240return x.IsNull ? Null : new SqlInt64(x.ByteValue); 246return x.IsNull ? Null : new SqlInt64(x.Value); 252return x.IsNull ? Null : new SqlInt64(x.Value); 258return x.IsNull ? Null : new SqlInt64(x.Value); 267return Null; 280return Null; 292return x.IsNull ? Null : new SqlInt64(x.ToInt64()); 299return SqlInt64.Null; 334return x.IsNull ? Null : new SqlInt64(long.Parse(x.Value, null));