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.

22 lines
491 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
Demo4_Deleteable.Init();
Demo2_Updateable.Init();
Demo7_Ado.Init();
DemoE_CodeFirst.Init();
DemoD_DbFirst.Init();
2 years ago
Console.WriteLine("Hello World!");
}
}
}