可能的错误原因:
数据库表使用了自增列且为主键,导致更新失败。
修复方法:在所属model类的字段上添加以下标记
[Column(IsIdentity = true, IsPrimary = true)]