SqlSugar/Src/Asp.NetCore2/GbaseTest/Program.cs
2022-08-28 13:25:46 +08:00

16 lines
280 B
C#

using OrmTest;
using System;
namespace GbaseTest
{
internal class Program
{
static void Main(string[] args)
{
Demo0_SqlSugarClient.Init();
Demo1_Queryable.Init();
Console.WriteLine("Hello World!");
}
}
}