public static void Main() { try { Dapper.AnyDbConnectionInitialiser.Initialise(); //SerializationTest.TestAll(); QbTest.TestAll(); DapperTest.TestAll(); } catch (Exception ex) { Console.WriteLine(ex); } }
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(); }