using System; using System.Collections.Generic; using System.Linq; namespace SqlSugar.BzTDengineCore { public class TDengineUpdateBuilder : UpdateBuilder { public override string ToSqlString() { throw new NotSupportedException("TDengine库不支持更新操作"); } protected override string TomultipleSqlString(List> groupList) { throw new NotSupportedException("TDengine库不支持更新操作"); } } }