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.

82 lines
2.4 KiB

4 years ago
using Dapper;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PerformanceTest.TestItems
{
public class TestLike
{
public void Init(OrmType type)
{
Database.SetInitializer<EFContext>(null);
Console.WriteLine("测试SQL查询的速度");
var eachCount = 1;
var beginDate = DateTime.Now;
for (int i = 0; i < 20; i++)
{
switch (type)
{
case OrmType.SqlSugar:
SqlSugar(eachCount);
break;
case OrmType.Dapper:
Dapper(eachCount);
break;
case OrmType.EF:
EF(eachCount);
break;
case OrmType.FREE:
Free(eachCount);
break;
}
}
Console.Write("总计:" + (DateTime.Now - beginDate).TotalMilliseconds / 1000.0);
}
private static void Free(int eachCount)
{
GC.Collect();//回收资源
System.Threading.Thread.Sleep(1);//休息1秒
4 years ago
IFreeSql fsql = new FreeSql.FreeSqlBuilder()
.UseConnectionString(FreeSql.DataType.SqlServer, Config.connectionString)
.UseAutoSyncStructure(false) //自动同步实体结构到数据库
.Build();
4 years ago
PerHelper.Execute(eachCount, "Free like ", () =>
{
4 years ago
var x = "abc";
var list2 = fsql.Queryable<Test>().Where(it => it.F_String.Contains(x)).ToList();
4 years ago
});
}
private static void SqlSugar(int eachCount)
{
GC.Collect();//回收资源
System.Threading.Thread.Sleep(1);//休息1秒
PerHelper.Execute(eachCount, "SqlSugar like ", () =>
{
SqlSugarClient conn = Config.GetSugarConn();
var list2 = conn.Queryable<Test>().Where(it => it.F_String.Contains("abc")).ToList();
});
}
private static void Dapper(int eachCount)
{
throw new Exception("未实现");
}
private static void EF(int eachCount)
{
throw new Exception("未实现");
}
}
}