SqlSugar/Src/Asp.Net/PerformanceTest/Program.cs
sunkaixuan 05819eb304 -
2017-09-21 14:36:05 +08:00

25 lines
531 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();
//new TestGetById().Init();
new TestSql().Init(OrmType.SqlSugar);
Console.ReadKey();
}
}
}