SqlSugar/Src/Asp.Net/PgSqlTest/Program.cs

31 lines
622 B
C#
Raw Normal View History

2019-05-17 18:04:18 +08:00
using System;
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
2019-05-26 19:35:57 +08:00
// 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();
2019-05-17 18:04:18 +08:00
2019-05-26 19:35:57 +08:00
//Unit test
NewUnitTest.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
2019-05-17 18:04:18 +08:00
}
2019-05-26 19:35:57 +08:00
2019-05-17 18:04:18 +08:00
}
}