作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我执行 update(table).replace(model)
时,我只想更新指定的列它替换与主键对应的所有数据。如何只更新指定的列而不编写自定义查询。
最佳答案
你必须用 Insertable
声明你的函数像那样:
Future updateVisit(Insertable<Visit> visit) => update(visits).replace(visit);
所以,当你调用一个函数时,你可以这样做:
visitDao.updateVisit(visit.copyWith(completed: newValue))
或者
visitDao.updateVisit(VisitsCompanion(id: Value(visitId), checkOut: Value(DateTime.now())));
关于android - flutter moor - 仅更新指定的列而无需自定义查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59476314/
我是一名优秀的程序员,十分优秀!