SqlSugar/Src/Asp.NetCore2/SqlSeverTest/PgSqlTest/Program.cs

38 lines
873 B
C#
Raw Normal View History

2018-11-30 15:41:25 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Linq.Expressions;
using SqlSugar;
using OrmTest.Models;
using System.Data.SqlClient;
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
2018-12-02 23:47:11 +08:00
Demo.DbFirst.Init();
2018-12-02 23:19:36 +08:00
Demo.CodeFirst.Init();
2018-11-30 17:39:14 +08:00
Demo.Aop.Init();
2018-11-30 15:41:25 +08:00
Demo.Query.Init();
2018-11-30 16:27:02 +08:00
Demo.Insert.Init();
Demo.Delete.Init();
Demo.Update.Init();
2018-11-30 15:41:25 +08:00
Demo.MasterSlave.Init();
Demo.SharedConnection.Init();
Demo.ExtSqlFun.Init();
2018-12-02 23:42:16 +08:00
//Demo.QueryableView.Init();
2018-11-30 15:41:25 +08:00
Demo.AttributeDemo.Init();
Demo.Mapper.Init();
Demo.ExtEntity.Init();
2019-04-04 23:47:23 +08:00
Demo.Queue.Init();
2018-11-30 15:41:25 +08:00
}
}
}