Update Demo

This commit is contained in:
sunkaixuan
2019-05-27 17:07:16 +08:00
parent 5903462ec4
commit 73dc46458e
60 changed files with 1392 additions and 63 deletions

View File

@@ -1,15 +1,6 @@
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;
using OrmTest.PerformanceTesting;
using OrmTest.UnitTest;
using OrmTest.PerformanceTesting;
using System;
namespace OrmTest
{
@@ -17,21 +8,15 @@ namespace OrmTest
{
static void Main(string[] args)
{
OldTestMain.Init();
//Unit test
NewUnitTest.Init();
/***Unit Test***/
new Select(1).Init();
new Field(1).Init();
/***Demo***/
OrmTest.Demo.Query.Init();
OrmTest.Demo.Insert.Init();
//OrmTest.Demo.Delete.Init();
OrmTest.Demo.Update.Init();
OrmTest.Demo.DbFirst.Init();
OrmTest.Demo.JoinSql.Init();
OrmTest.Demo.Filter.Init();
OrmTest.Demo.ComplexModel.Init();
OrmTest.Demo.CodeFirst.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}