SqlSugar/Src/Asp.NetCore2/TDengineTest/Program.cs

24 lines
371 B
C#
Raw Normal View History

2023-07-31 18:55:12 +08:00

using System;
2023-08-02 08:32:38 +08:00
using TDengineTest;
2023-07-31 18:55:12 +08:00
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
2023-08-02 08:32:38 +08:00
//orm用例
ORMTest.Init();
//原生ado用例
AdoDemo.Init();
2023-07-31 23:59:42 +08:00
2023-07-31 18:55:12 +08:00
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}