Пример #1
0
        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());
        }
Пример #2
0
        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());
        }