mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 13:06:50 +08:00
-
This commit is contained in:
parent
f07e357ca8
commit
f7ca4a4b05
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
||||
</startup>
|
||||
</configuration>
|
@ -5,6 +5,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SqlSugar;
|
||||
using System.Linq.Expressions;
|
||||
using Chloe.Entity;
|
||||
|
||||
namespace OrmTest.Models
|
||||
{
|
||||
@ -17,6 +18,7 @@ namespace OrmTest.Models
|
||||
public int SchoolId { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
[SugarColumn(IsIgnore=true)]
|
||||
[NotMappedAttribute]
|
||||
public int TestId { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -33,6 +33,18 @@
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Chloe, Version=2.6.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Chloe.SqlServer.2.6.0\lib\net40\Chloe.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Chloe.SqlServer, Version=2.6.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Chloe.SqlServer.2.6.0\lib\net40\Chloe.SqlServer.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="SyntacticSugar, Version=2.4.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\SyntacticSugar.2.4.1\lib\net40\SyntacticSugar.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
@ -45,6 +57,9 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="Config.cs" />
|
||||
<Compile Include="Models\ViewModelStudent.cs" />
|
||||
<Compile Include="PerformanceTesting\ChloeORMPerformance.cs" />
|
||||
<Compile Include="PerformanceTesting\PerformanceBase.cs" />
|
||||
<Compile Include="PerformanceTesting\SqlSugarPerformance.cs" />
|
||||
<Compile Include="UnitTest\ExpressionTest\ExpTestBase.cs" />
|
||||
<Compile Include="UnitTest\ExpressionTest\Field.cs" />
|
||||
<Compile Include="UnitTest\Query\JoinQuery.cs" />
|
||||
@ -59,7 +74,7 @@
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<ProjectView>ProjectFiles</ProjectView>
|
||||
</PropertyGroup>
|
||||
</Project>
|
25
OrmTest/PerformanceTesting/ChloeORMPerformance.cs
Normal file
25
OrmTest/PerformanceTesting/ChloeORMPerformance.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Chloe;
|
||||
using Chloe.SqlServer;
|
||||
using OrmTest.Models;
|
||||
|
||||
namespace OrmTest.PerformanceTesting
|
||||
{
|
||||
public class ChloeORMPerformance: PerformanceBase
|
||||
{
|
||||
public void Select()
|
||||
{
|
||||
MsSqlContext db = new MsSqlContext(Config.ConnectionString);
|
||||
db.Query<Student>().Select(it => new ViewModelStudent2 { Name = it.Name, Student = it }).ToList();
|
||||
base.Execute("chloe", () =>
|
||||
{
|
||||
var test = db.Query<Student>().Select(it => new ViewModelStudent2 { Name = it.Name, Student = it }).ToList();
|
||||
});
|
||||
db.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
30
OrmTest/PerformanceTesting/PerformanceBase.cs
Normal file
30
OrmTest/PerformanceTesting/PerformanceBase.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using SyntacticSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OrmTest.PerformanceTesting
|
||||
{
|
||||
public class PerformanceBase
|
||||
{
|
||||
public int count = 100;
|
||||
public void Execute(string title, Action fun)
|
||||
{
|
||||
PerformanceTest ptef = new PerformanceTest();
|
||||
ptef.SetCount(count);//执行count次
|
||||
ptef.Execute(
|
||||
i =>
|
||||
{
|
||||
fun();
|
||||
|
||||
},
|
||||
res =>
|
||||
{
|
||||
Console.WriteLine(string.Format("Execute {0} time,{1}{2}", count, title, res));
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
}
|
30
OrmTest/PerformanceTesting/SqlSugarPerformance.cs
Normal file
30
OrmTest/PerformanceTesting/SqlSugarPerformance.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SqlSugar;
|
||||
using OrmTest.Models;
|
||||
|
||||
namespace OrmTest.PerformanceTesting
|
||||
{
|
||||
public class SqlSugarPerformance : PerformanceBase
|
||||
{
|
||||
public void Select()
|
||||
{
|
||||
SqlSugarClient db = new SqlSugarClient(new SystemTablesConfig()
|
||||
{
|
||||
ConnectionString = Config.ConnectionString,
|
||||
DbType = DbType.SqlServer,
|
||||
IsAutoCloseConnection = false
|
||||
});
|
||||
db.IgnoreComumns.Add("TestId", "Student");
|
||||
db.Queryable<Student>().Select(it => new ViewModelStudent2 { Name = it.Name, Student = it }).ToList();
|
||||
base.Execute("sqlsuagr", () =>
|
||||
{
|
||||
var test = db.Queryable<Student>().Select(it => new ViewModelStudent2 { Name = it.Name, Student = it }).ToList();
|
||||
});
|
||||
db.Close();
|
||||
}
|
||||
}
|
||||
}
|
@ -9,6 +9,8 @@ using SqlSugar;
|
||||
using OrmTest.Models;
|
||||
using System.Data.SqlClient;
|
||||
using OrmTest.UnitTest;
|
||||
using OrmTest.PerformanceTesting;
|
||||
|
||||
namespace OrmTest
|
||||
{
|
||||
class Program
|
||||
@ -22,7 +24,15 @@ namespace OrmTest
|
||||
//new Method(eachCount).Init();
|
||||
//new JoinQuery(eachCount).Init();
|
||||
//new SingleQuery(eachCount).Init();
|
||||
new SelectQuery(eachCount).Init();
|
||||
//new SelectQuery(eachCount).Init();
|
||||
|
||||
|
||||
//Performance Test
|
||||
for (int i = 0; i < 100; i++)
|
||||
{
|
||||
|
||||
new ChloeORMPerformance().Select();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
5
OrmTest/packages.config
Normal file
5
OrmTest/packages.config
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Chloe.SqlServer" version="2.6.0" targetFramework="net452" />
|
||||
<package id="SyntacticSugar" version="2.4.1" targetFramework="net452" />
|
||||
</packages>
|
Loading…
Reference in New Issue
Block a user