Update Core

This commit is contained in:
sunkaixuan
2018-11-26 00:53:40 +08:00
parent dd7b01dc9e
commit 1dc157d13e
33 changed files with 805 additions and 75 deletions

View File

@@ -17,25 +17,11 @@ namespace OrmTest
{
static void Main(string[] args)
{
//throw new Exception("Oracle developed 75%,to be continued");
// /***Unit Test***/
new Select(1).Init();
new Field(1).Init();
// new Where(1).Init();
//new Method(1).Init();
//new JoinQuery(1).Init();
//new SingleQuery(1).Init();
//new SelectQuery(1).Init();
//new AutoClose(1).Init();
//new Insert(1).Init();
//new Delete(1).Init();
//new Update(1).Init();
//new Mapping(1).Init();
//new DataTest(1).Init();
//new EnumTest(1).Init();
///***Performance Test***/
//new SqlSugarPerformance(100).Select();
/***Demo***/
OrmTest.Demo.Query.Init();
@@ -46,7 +32,7 @@ namespace OrmTest
OrmTest.Demo.JoinSql.Init();
OrmTest.Demo.Filter.Init();
OrmTest.Demo.ComplexModel.Init();
//OrmTest.Demo.CodeFirst.Init();
OrmTest.Demo.CodeFirst.Init();
}
}
}