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

31 lines
773 B
C#
Raw Normal View History

2022-02-20 14:13:19 +08:00
using System;
namespace OrmTest
{
class Program
{
/// <summary>
/// Set up config.cs file and start directly F5
/// 设置Config.cs文件直接F5启动例子
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
2022-08-11 19:10:32 +08:00
DemoE_CodeFirst.Init();
2022-02-20 14:13:19 +08:00
Demo0_SqlSugarClient.Init();
Demo1_Queryable.Init();
Demo2_Updateable.Init();
Demo3_Insertable.Init();
Demo4_Deleteable.Init();
Demo5_SqlQueryable.Init();
2022-03-24 21:54:53 +08:00
Demo8_Saveable.Init();
2022-02-20 14:13:19 +08:00
Demo7_Ado.Init();
2022-02-26 14:36:59 +08:00
DemoD_DbFirst.Init();
2022-02-20 14:13:19 +08:00
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}