示例#1
0
        internal static void TestAll()
        {
            DapperTest t = new DapperTest();

            t.InitDb();
            t.SelectTest();
            t.GetPageSqlTest();
            t.ExecuteAsyncTest();
        }
示例#2
0
        public static void Main()
        {
            try
            {
                Dapper.AnyDbConnectionInitialiser.Initialise();

                //SerializationTest.TestAll();
                QbTest.TestAll();
                DapperTest.TestAll();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex);
            }
        }