mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
27 lines
508 B
C#
27 lines
508 B
C#
using System;
|
|
|
|
namespace OrmTest
|
|
{
|
|
class Program
|
|
{
|
|
/// <summary>
|
|
/// Set up config.cs file and start directly F5
|
|
/// 设置Config.cs文件直接F5启动例子
|
|
/// </summary>
|
|
/// <param name="args"></param>
|
|
static void Main(string[] args)
|
|
{
|
|
|
|
NewUnitTest.Init();
|
|
|
|
//Rest Data
|
|
NewUnitTest.RestData();
|
|
|
|
Console.WriteLine("all successfully.");
|
|
Console.ReadKey();
|
|
}
|
|
|
|
|
|
}
|
|
}
|