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

28 lines
541 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-08 16:51:25 +08:00
//需要安装客户端SDK
//https://docs.taosdata.com/connector/#%E5%AE%89%E8%A3%85%E5%AE%A2%E6%88%B7%E7%AB%AF%E9%A9%B1%E5%8A%A8
2023-08-02 08:32:38 +08:00
//orm用例
ORMTest.Init();
2023-08-08 16:51:25 +08:00
2023-08-02 08:32:38 +08:00
//原生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();
}
}
}