Ejemplo n.º 1
0
        public void TinyInt_ReturnsTinyIntDataType()
        {
            var dataType = SqlDataType.TinyInt();

            Assert.NotNull(dataType);
            Assert.Equal(SqlDataTypeNames.TinyInt, dataType.Name);
        }
Ejemplo n.º 2
0
 public virtual async Task Data_StoreTinyInt()
 {
     await Data_TestStoreDataType <byte>(SqlDataType.TinyInt(), 127);
 }