SqlSugar/Src/Asp.Net/PerformanceTest/Program.cs
sunkaixuan c34232ab43 -
2017-09-21 14:40:43 +08:00

25 lines
563 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();
}
}
}