Esempio n. 1
0
        public static void Main()
        {
            try
            {
                Dapper.AnyDbConnectionInitialiser.Initialise();

                //SerializationTest.TestAll();
                QbTest.TestAll();
                DapperTest.TestAll();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex);
            }
        }
Esempio n. 2
0
        internal static void TestAll()
        {
            QbTest t = new QbTest();

            t.TestNotIn();
            t.TestPaging();
            t.TestLong();
            t.TestDelete();
            t.TestInsert();
            t.TestUpdate();

            t.TestJoin();
            t.TestJoinCond();
            t.TestCond();
            t.TestFrom();
            t.TestExpr();
            t.TestLogic();
            t.TestWhere();
        }