SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
317 B

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