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)
|
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|