public void GetRawValue() { SqlType type = new SqlMoney(5.27m, ParameterDirection.Input); Assert.AreEqual(5.27m, type.GetRawValue()); type = new SqlMoney(null, ParameterDirection.Input); Assert.Null(type.GetRawValue()); }