mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-30 12:47:57 +08:00
25 lines
531 B
C#
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();
|
|
}
|
|
}
|
|
}
|