7 references to SqlMoney
System.Data (7)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3166return new SqlMoney( temp, 1 /* ignored */ );
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
602return new SqlMoney(_value._int64, 1/*ignored*/);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (5)
298return new SqlMoney(-x.m_value, 0); 310return(x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x.m_value + y.m_value), 0); 322return(x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x.m_value - y.m_value), 0); 687public static readonly SqlMoney MinValue = new SqlMoney(unchecked((long)0x8000000000000000L), 0); 697public static readonly SqlMoney MaxValue = new SqlMoney(0x7FFFFFFFFFFFFFFFL, 0);