SqlSugar/Src/Asp.Net/SqlServerTest/Program.cs
2019-05-20 17:20:36 +08:00

31 lines
609 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();
//Unit test
NewUnitTest.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}