SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.4 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using Dapper;
using SqlSugar;
using Dapper.Contrib.Extensions;
7 years ago
using System.Data.Entity;
7 years ago
namespace PerformanceTest.TestItems
{
7 years ago
public class TestGetAll
{
7 years ago
public void Init(OrmType type)
{
7 years ago
Database.SetInitializer<EFContext>(null);
5 years ago
Console.WriteLine("测试一次读取10万条数据的速度");
7 years ago
var eachCount = 1;
7 years ago
var beginDate = DateTime.Now;
for (int i = 0; i < 10; i++)
{
7 years ago
switch (type)
{
case OrmType.SqlSugar:
SqlSugar(eachCount);
break;
case OrmType.Dapper:
Dapper(eachCount);
break;
7 years ago
case OrmType.EF:
EF(eachCount);
break;
7 years ago
default:
break;
}
}
7 years ago
Console.Write("总计:" + (DateTime.Now - beginDate).TotalMilliseconds / 1000.0);
}
private static void SqlSugar(int eachCount)
{
GC.Collect();//回收资源
7 years ago
System.Threading.Thread.Sleep(1);//休息1秒
PerHelper.Execute(eachCount, "SqlSugar", () =>
{
7 years ago
using (SqlSugarClient conn = Config.GetSugarConn())
{
7 years ago
var list2 = conn.Queryable<Test>().ToList();
}
});
}
7 years ago
private static void Dapper(int eachCount)
{
GC.Collect();//回收资源
7 years ago
System.Threading.Thread.Sleep(1);//休息1秒
PerHelper.Execute(eachCount, "Dapper", () =>
{
7 years ago
using (SqlConnection conn = new SqlConnection(Config.connectionString))
{
7 years ago
var list = conn.GetAll<Test>();
}
});
}
7 years ago
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().ToList();
}
});
}
}
}