SqlSugar/Src/Asp.Net/PerformanceTest/Program.cs

25 lines
563 B
C#
Raw Normal View History

2017-09-21 13:52:52 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2017-09-21 14:22:23 +08:00
using PerformanceTest.TestItems;
2017-09-21 13:52:52 +08:00
namespace PerformanceTest
{
class Program
{
/// <summary>
2017-09-21 14:36:05 +08:00
/// 分开测试比较公平
2017-09-21 13:52:52 +08:00
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
2017-09-21 14:40:43 +08:00
//new TestGetAll().Init(OrmType.SqlSugar);
new TestGetById().Init(OrmType.SqlSugar);
//new TestSql().Init(OrmType.SqlSugar);
2017-09-21 13:52:52 +08:00
Console.ReadKey();
}
}
}