25 references to SqlInt64
System.Data.Common (25)
System\Data\Common\SQLConvert.cs (1)
591return new SqlInt64(XmlConvert.ToInt64((string)value));
System\Data\SQLTypes\SQLInt64.cs (24)
64return new SqlInt64(x); 83return new SqlInt64(long.Parse(s, null)); 89return x.IsNull ? Null : new SqlInt64(-x.m_value); 94return x.IsNull ? Null : new SqlInt64(~x.m_value); 109return new SqlInt64(lResult); 121return new SqlInt64(lResult); 184return new SqlInt64(lResult); 197return new SqlInt64(x.m_value / y.m_value); 213return new SqlInt64(x.m_value % y.m_value); 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); 273return new SqlInt64((long)value); 286return new SqlInt64((long)value); 292return x.IsNull ? Null : new SqlInt64(x.ToInt64()); 327return new SqlInt64(llRetVal); 334return x.IsNull ? Null : new SqlInt64(long.Parse(x.Value, null)); 599public static readonly SqlInt64 Zero = new SqlInt64(0); 600public static readonly SqlInt64 MinValue = new SqlInt64(long.MinValue); 601public static readonly SqlInt64 MaxValue = new SqlInt64(long.MaxValue);