Update Demo

This commit is contained in:
sunkaixuan
2019-05-26 19:35:57 +08:00
parent 7ef0bce3d4
commit fa91e6809a
60 changed files with 2454 additions and 54 deletions

View File

@@ -1,14 +1,4 @@
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
{
@@ -16,22 +6,25 @@ namespace OrmTest
{
static void Main(string[] args)
{
Demo.CodeFirst.Init();
Demo.DbFirst.Init();
Demo.Aop.Init();
Demo.Query.Init();
Demo.Insert.Init();
Demo.Delete.Init();
Demo.Update.Init();
Demo.MasterSlave.Init();
Demo.SharedConnection.Init();
Demo.ExtSqlFun.Init();
//Demo.QueryableView.Init();
Demo.AttributeDemo.Init();
Demo.Mapper.Init();
Demo.ExtEntity.Init();
Demo.Queue.Init();
// OldTestMain.Init();
//Demo
Demo0_SqlSugarClient.Init();
Demo1_Queryable.Init();
Demo2_Updateable.Init();
Democ_GobalFilter.Init();
DemoD_DbFirst.Init();
DemoE_CodeFirst.Init();
Demo5_SqlQueryable.Init();
Demo6_Queue.Init();
//Unit test
NewUnitTest.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}