This commit is contained in:
sunkaixuan 2017-09-22 17:49:15 +08:00
parent f3009416dd
commit 6247e67528
2 changed files with 5 additions and 5 deletions

View File

@ -8,9 +8,9 @@ namespace PerformanceTest
{
class Program
{
/// <summary>
/// 分开测试比较公平
/// 注意注意注意注意注意:分开测试比较公平,并且请在Realse模式下启动程序SqlSugar直接引用的是项目
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)

View File

@ -46,7 +46,7 @@ namespace PerformanceTest.TestItems
{
using (SqlSugarClient conn = Config.GetSugarConn())
{
var list2 = conn.Ado.SqlQuery<Test>("select top 10 * from Test"); ;
var list2 = conn.Ado.SqlQuery<Test>("select top 20 * from Test"); ;
}
});
}
@ -60,7 +60,7 @@ namespace PerformanceTest.TestItems
{
using (SqlConnection conn = new SqlConnection(Config.connectionString))
{
var list = conn.Query<Test>("select top 10 * from Test");
var list = conn.Query<Test>("select top 20 * from Test");
}
});
}
@ -74,7 +74,7 @@ namespace PerformanceTest.TestItems
{
using (EFContext conn = new EFContext(Config.connectionString))
{
var list = conn.Database.SqlQuery<Test>("select top 10 * from Test").ToList();
var list = conn.Database.SqlQuery<Test>("select top 20 * from Test").ToList();
}
});
}