SqlSugar/Src/Asp.Net/SqlServerTest/Program.cs
2019-06-01 12:20:22 +08:00

33 lines
695 B
C#

using OrmTest.PerformanceTesting;
using OrmTest.UnitTest;
using System;
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
//OldTestMain.Init();
//Demo
//Demo0_SqlSugarClient.Init();
//Demo1_Queryable.Init();
//Demo2_Updateable.Init();
//Democ_GobalFilter.Init();
//DemoD_DbFirst.Init();
//DemoE_CodeFirst.Init();
//Demo5_SqlQueryable.Init();
//Demo6_Queue.Init();
//Unit test
NewUnitTest.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}