用于审计的 EF6 时态表

发布于 2025-01-10 05:12:30 字数 51 浏览 0 评论 0原文

有没有办法记录谁在临时表中进行了更改?我可以看到日期范围,但看不到向架构添加新列的方法?

Is there a way to record who did the change within the Temporal table? I can see the date ranges but I can't see a way of adding a new column to the schema?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2025-01-17 05:12:30

时态表不跟踪“谁”,只跟踪“何时”。您可以向表中添加一列来跟踪谁执行了最后一次修改,并在 DbContext.SaveChanges() 的替代中或在触发器中设置该值。

Temporal tables don't track "who" only "when". You can add a column to the table to track who performed the last modification, setting that value in an override to DbContext.SaveChanges() or in a Trigger.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文