SqlSugar/Src/Asp.Net/PerformanceTest/Program.cs
sunkaixuan 1e5bb2922e -
2017-09-22 13:38:41 +08:00

25 lines
564 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PerformanceTest.TestItems;
namespace PerformanceTest
{
class Program
{
/// <summary>
/// 分开测试比较公平
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
//new TestGetAll().Init(OrmType.SqlSugar);
// new TestGetById().Init(OrmType.SqlSugar);
new TestSql().Init(OrmType.SqlSugar);
Console.ReadKey();
}
}
}