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

105 lines
3.1 KiB
C#
Raw Normal View History

2017-09-21 14:21:16 +08:00
using Dapper.Contrib.Extensions;
using SqlSugar;
using System;
using System.Collections.Generic;
2017-09-22 14:12:58 +08:00
using System.Data.Entity;
2017-09-21 14:21:16 +08:00
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PerformanceTest.TestItems
{
public class TestGetById
{
2017-09-21 14:38:40 +08:00
public void Init(OrmType type)
2017-09-21 14:21:16 +08:00
{
2017-09-22 14:12:58 +08:00
Database.SetInitializer<EFContext>(null);
2017-09-21 14:21:16 +08:00
Console.WriteLine("测试一次读取1条数据的速度");
var eachCount = 1000;
2017-09-21 14:57:18 +08:00
var beginDate = DateTime.Now;
2017-09-21 14:54:51 +08:00
for (int i = 0; i < 20; i++)
2017-09-21 14:21:16 +08:00
{
2017-09-21 14:38:40 +08:00
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;
2020-11-27 19:01:30 +08:00
case OrmType.FREE:
Free(eachCount);
break;
2017-09-21 14:38:40 +08:00
default:
break;
}
2017-09-21 14:21:16 +08:00
}
2017-09-21 14:54:51 +08:00
2017-09-21 14:57:18 +08:00
Console.Write("总计:"+(DateTime.Now-beginDate).TotalMilliseconds/1000.0);
2017-09-21 14:21:16 +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:21:16 +08:00
{
2020-11-27 19:01:30 +08:00
var list2 = conn.Queryable<Test>().First(it=>it.Id==1);
2017-09-21 14:21:16 +08:00
}
});
}
2020-11-27 19:01:30 +08:00
private static void Free(int eachCount)
{
GC.Collect();//回收资源
System.Threading.Thread.Sleep(1);//休息1秒
2017-09-21 14:21:16 +08:00
2020-11-27 19:01:30 +08:00
PerHelper.Execute(eachCount, "free", () =>
{
IFreeSql fsql = new FreeSql.FreeSqlBuilder()
.UseConnectionString(FreeSql.DataType.SqlServer, Config.connectionString)
.UseAutoSyncStructure(false) //自动同步实体结构到数据库
.Build();
var list2 = fsql.Queryable<Test>().Where(it=>it.Id==1).First();
//用.First(it=>it.Id==1)报错
});
}
2017-09-21 14:21:16 +08:00
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))
{
2017-09-21 15:09:39 +08:00
var list = conn.Get<Test>(1);
2017-09-21 14:21:16 +08:00
}
});
}
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.TestList.AsNoTracking().Single(it=>it.Id==1);
}
});
}
2017-09-21 14:21:16 +08:00
}
}