This commit is contained in:
sunkaixuan 2017-07-14 01:23:01 +08:00
parent 51574c06ef
commit 09a5a2b9ee
5 changed files with 19 additions and 19 deletions

View File

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

View File

@ -207,9 +207,9 @@
<Compile Include="SqlSugarClient.cs" /> <Compile Include="SqlSugarClient.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="Lib\MySql.Data.dll" /> <Content Include="References\MySql.Data.dll" />
<Content Include="Lib\Newtonsoft.Json.dll" /> <Content Include="References\Newtonsoft.Json.dll" />
<Content Include="Lib\System.Data.SQLite.dll" /> <Content Include="References\System.Data.SQLite.dll" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Folder Include="Realization\Oracle\" /> <Folder Include="Realization\Oracle\" />