SqlSugar/Src/Asp.Net/PerformanceTest/TestItems/TestSql.cs

83 lines
2.4 KiB
C#
Raw Normal View History

2017-09-21 14:36:05 +08:00
using Dapper;
using SqlSugar;
using System;
using System.Collections.Generic;
2017-09-22 14:12:58 +08:00
using System.Data.Entity;
2017-09-21 14:36:05 +08:00
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PerformanceTest.TestItems
{
public class TestSql
{
public void Init(OrmType type)
{
2017-09-22 14:12:58 +08:00
Database.SetInitializer<EFContext>(null);
2017-09-21 14:36:05 +08:00
Console.WriteLine("测试SQL查询的速度");
var eachCount = 3000;
2017-09-21 14:57:18 +08:00
var beginDate = DateTime.Now;
2017-09-21 14:36:05 +08:00
for (int i = 0; i < 10; i++)
{
switch (type)
{
case OrmType.SqlSugar:
SqlSugar(eachCount);
break;
case OrmType.Dapper:
Dapper(eachCount);
break;
2017-09-22 14:12:58 +08:00
case OrmType.EF:
EF(eachCount);
break;
2017-09-21 14:36:05 +08:00
}
}
2017-09-21 14:57:18 +08:00
Console.Write("总计:" + (DateTime.Now - beginDate).TotalMilliseconds / 1000.0);
2017-09-21 14:36:05 +08:00
}
private static void SqlSugar(int eachCount)
{
GC.Collect();//回收资源
System.Threading.Thread.Sleep(1);//休息1秒
PerHelper.Execute(eachCount, "SqlSugar", () =>
{
2017-09-21 14:46:29 +08:00
using (SqlSugarClient conn = Config.GetSugarConn())
2017-09-21 14:36:05 +08:00
{
var list2 = conn.Ado.SqlQuery<Test>("select top 10 * from Test"); ;
}
});
}
private static void Dapper(int eachCount)
{
GC.Collect();//回收资源
System.Threading.Thread.Sleep(1);//休息1秒
PerHelper.Execute(eachCount, "Dapper", () =>
{
using (SqlConnection conn = new SqlConnection(Config.connectionString))
{
var list = conn.Query<Test>("select top 10 * from Test");
}
});
}
2017-09-22 14:12:58 +08:00
private static void EF(int eachCount)
{
GC.Collect();//回收资源
System.Threading.Thread.Sleep(1);//休息1秒
PerHelper.Execute(eachCount, "EF", () =>
{
using (EFContext conn = new EFContext(Config.connectionString))
{
var list = conn.Database.SqlQuery<Test>("select top 10 * from Test").ToList();
}
});
}
2017-09-21 14:36:05 +08:00
}
}