使用SqlSugar批量更新时报错 You cannot have no primary key and no conditions

转自: https://www.365seal.com/y/M1vLy7bYVx.html
主键或条件不存在

​​Db.Updateable(users).ExecuteCommand();​​

解决办法
  就是用WhereColumns指定条件,无主键更新

​​Db.Updateable(users).WhereColumns(it => new { it.Id }).ExecuteCommand();​

posted on 2022-06-15 18:44  manber  阅读(676)  评论(0编辑  收藏  举报

导航