Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MySql 数据库中,我有分别用 CURRENT_TIMESTAMP 和 ON UPDATE CURRENT_TIMESTAMP 标记的“created”和“updated”列。我从不想手动更新这些字段,但我确实想阅读它们。SqlKata 有 Ignore 属性,但这完全忽略了它(惊喜!)。是否有类似 IgnoreOnInsert 或类似的解决方法?
现在我通过一个没有这两个属性的子对象来解决这个问题,但这并不好。
该Ignore属性只影响插入/更新操作,不影响选择语句。
Ignore