using System.Text; using FreeSql.TDengine; public static class FreeSqlTDengineGlobalExtensions { /// /// 特殊处理类似 string.Format 的使用方法,防止注入,以及 IS NULL 转换 /// /// /// /// public static string FormatTDengine(this string that, params object[] args) => TDengineAdo.Addslashes(that, args); static readonly TDengineAdo TDengineAdo = new TDengineAdo(); }