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