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

24 lines
451 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;
using PerformanceTest.Items;
namespace PerformanceTest
{
class Program
{
/// <summary>
/// SqlSugar与Dapper的性能比较
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
2017-09-21 14:15:16 +08:00
new TestGetAll().Init();
2017-09-21 13:52:52 +08:00
Console.ReadKey();
}
}
}