mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
30 lines
570 B
C#
30 lines
570 B
C#
using OrmTest.PerformanceTesting;
|
|
using OrmTest.UnitTest;
|
|
using System;
|
|
|
|
namespace OrmTest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
OldTestMain.Init();
|
|
|
|
//Demo
|
|
Demo1_SqlSugarClient.Init();
|
|
Demo1_Queryable.Init();
|
|
Democ_GobalFilter.Init();
|
|
DemoD_DbFirst.Init();
|
|
DemoE_CodeFirst.Init();
|
|
|
|
//Unit test
|
|
NewUnitTest.Init();
|
|
|
|
Console.WriteLine("all successfully.");
|
|
Console.ReadKey();
|
|
}
|
|
|
|
|
|
}
|
|
}
|