Browse Source

-

pull/12/MERGE
sunkaixuan 7 years ago
parent
commit
09a5a2b9ee
  1. 32
      Src/Asp.Net/SqlServerTest/Program.cs
  2. 0
      Src/Asp.Net/SqlSugar/References/MySql.Data.dll
  3. 0
      Src/Asp.Net/SqlSugar/References/Newtonsoft.Json.dll
  4. 0
      Src/Asp.Net/SqlSugar/References/System.Data.SQLite.dll
  5. 6
      Src/Asp.Net/SqlSugar/SqlSugar.csproj

32
Src/Asp.Net/SqlServerTest/Program.cs

@ -17,23 +17,23 @@ namespace OrmTest
{
static void Main(string[] args)
{
// /***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();
//// /***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();
/***Performance Test***/
new SqlSugarPerformance(100).Select();
///***Performance Test***/
//new SqlSugarPerformance(100).Select();
/***Demo***/
OrmTest.Demo.Query.Init();

0
Src/Asp.Net/SqlSugar/Lib/MySql.Data.dll → Src/Asp.Net/SqlSugar/References/MySql.Data.dll

0
Src/Asp.Net/SqlSugar/Lib/Newtonsoft.Json.dll → Src/Asp.Net/SqlSugar/References/Newtonsoft.Json.dll

0
Src/Asp.Net/SqlSugar/Lib/System.Data.SQLite.dll → Src/Asp.Net/SqlSugar/References/System.Data.SQLite.dll

6
Src/Asp.Net/SqlSugar/SqlSugar.csproj

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

Loading…
Cancel
Save