SqlSugar C#代码中批量更新时报错:You cannot have no primary key and no conditions


问题:使用SqlSugar批量更新时报错“SqlSugar.SqlSugarException: You cannot have no primary key and no conditions”;

  主键或条件不存在

  Db.Updateable<User>(users).ExecuteCommand();

解决办法

  就是用WhereColumns指定条件,无主键更新

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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM