SqlSugar/Src/Asp.Net/SqlServerTest/Program.cs
2019-05-28 16:12:59 +08:00

33 lines
679 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();
}
}
}