This commit is contained in:
sunkaixuan
2017-05-21 22:33:21 +08:00
parent 23a94e92dc
commit 3ed80f6bca
7 changed files with 129 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ namespace OrmTest
{
static void Main(string[] args)
{
/***Unit Test***/
///***Unit Test***/
//new Field(1).Init();
//new Where(1).Init();
//new Method(1).Init();
@@ -25,16 +25,16 @@ namespace OrmTest
//new SingleQuery(1).Init();
//new SelectQuery(1).Init();
//new AutoClose(1).Init();
new Insert(1).Init();
//new Insert(1).Init();
//new Delete(1).Init();
//new Update(1).Init();
//new Mapping(1).Init();
/***Performance Test***/
///***Performance Test***/
//new SqlSugarPerformance(100).Select();
//Demo
/***Demo***/
OrmTest.Demo.Query.Init();
}
}
}