mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-06 13:47:59 +08:00
31 lines
526 B
C#
31 lines
526 B
C#
using KdbndpTest.OracleDemo;
|
|
using KdbndpTest.SqlServerDemo;
|
|
using System;
|
|
|
|
namespace OrmTest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
|
|
//Oracle模式DEMO
|
|
OracleDemo.Init();
|
|
|
|
//SqlServer模式DEMO
|
|
SqlServer.Init();
|
|
|
|
//Unit test
|
|
//NewUnitTest.Init();
|
|
|
|
//Rest Data
|
|
NewUnitTest.RestData();
|
|
|
|
Console.WriteLine("all successfully.");
|
|
Console.ReadKey();
|
|
}
|
|
|
|
|
|
}
|
|
}
|