TDengineUpdateBuilder.cs 524 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace SqlSugar.BzTDengineCore
  5. {
  6. public class TDengineUpdateBuilder : UpdateBuilder
  7. {
  8. public override string ToSqlString()
  9. {
  10. throw new NotSupportedException("TDengine库不支持更新操作");
  11. }
  12. protected override string TomultipleSqlString(List<IGrouping<int, DbColumnInfo>> groupList)
  13. {
  14. throw new NotSupportedException("TDengine库不支持更新操作");
  15. }
  16. }
  17. }