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

16 lines
280 B
C#
Raw 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-15 12:24:26 +08:00
Console.WriteLine("Hello World!");
}
}
}