mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
25 lines
563 B
C#
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();
|
|
}
|
|
}
|
|
}
|