SqlSugar/Src/Asp.NetCore2/GbaseTest/Program.cs

22 lines
491 B
C#
Raw Permalink Normal View History

2022-08-23 00:30:09 +08:00
using OrmTest;
using System;
2022-08-15 12:24:26 +08:00
namespace GbaseTest
{
internal class Program
{
static void Main(string[] args)
{
2022-08-23 00:30:09 +08:00
Demo0_SqlSugarClient.Init();
2022-08-28 13:25:46 +08:00
Demo1_Queryable.Init();
2022-08-28 14:32:34 +08:00
Demo3_Insertable.Init();
2022-08-28 15:16:35 +08:00
Demo4_Deleteable.Init();
Demo2_Updateable.Init();
2022-08-28 15:55:33 +08:00
Demo7_Ado.Init();
DemoE_CodeFirst.Init();
2022-08-28 17:55:59 +08:00
DemoD_DbFirst.Init();
2022-08-15 12:24:26 +08:00
Console.WriteLine("Hello World!");
}
}
}