sqlsugar/Src/Asp.NetCore2/KdbndpTest/Program.cs

37 lines
724 B
C#
Raw Permalink Normal View History

2025-05-11 16:20:50 +08:00
using KdbndpTest.OracleDemo;
using KdbndpTest.SqlServerDemo;
using System;
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
//可以查看安装的模式
//show database_mode;
//Oracle模式DEMO 【默认模式语法同时支持PGSQL】
OracleDemo.Init();
//SqlServer模式DEMO
//SqlServerDemo.Init();
//MySql模式DEMO
//MySqlDemo.Init();
//PostgreSQL模式DEMO
//PgSqlDemo.Init();
//Unit test
//NewUnitTest.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}