12345678910111213141516171819 |
- 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<IGrouping<int, DbColumnInfo>> groupList)
- {
- throw new NotSupportedException("TDengine库不支持更新操作");
- }
- }
- }
|