SqlSugar/Src/Asp.NetCore2/TDengineTest/Program.cs
2023-08-08 16:51:25 +08:00

28 lines
541 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using TDengineTest;
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
//需要安装客户端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
//orm用例
ORMTest.Init();
//原生ado用例
AdoDemo.Init();
Console.WriteLine("all successfully.");
Console.ReadKey();
}
}
}