SqlSugar/Src/Asp.Net/SqlSugar.Access/Access/SqlBuilder/AccessUpdateBuilder.cs

18 lines
412 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar.Access
{
2022-02-20 16:32:32 +08:00
public class AccessUpdateBuilder : UpdateBuilder
{
2022-02-21 01:03:03 +08:00
protected override string TomultipleSqlString(List<IGrouping<int, DbColumnInfo>> groupList)
{
throw new Exception("access no support batch update");
}
}
}