Exemplo n.º 1
0
        public void BigInt_Create()
        {
            var obj = DataObject.BigInt(8399902L);

            Assert.IsNotNull(obj);
            Assert.IsInstanceOf <NumericType>(obj.Type);
            Assert.AreEqual(SqlTypeCode.BigInt, obj.Type.TypeCode);
            Assert.AreEqual(8399902L, obj);
        }