代码优化

This commit is contained in:
610262374@qq.com
2017-03-13 11:16:55 +08:00
parent b55d622d3e
commit 69b5ea419d
2 changed files with 37 additions and 25 deletions

View File

@@ -16,12 +16,12 @@ namespace OrmTest
static void Main(string[] args)
{
//Unit Test
int eachCount = 1;
new Field(eachCount).Init();
new Where(eachCount).Init();
new Method(eachCount).Init();
new JoinQuery(eachCount).Init();
new SingleQuery(eachCount).Init();
int eachCount = 10;
//new Field(eachCount).Init();
//new Where(eachCount).Init();
//new Method(eachCount).Init();
//new JoinQuery(eachCount).Init();
//new SingleQuery(eachCount).Init();
new SelectQuery(eachCount).Init();
}
}