用于审计的 EF6 时态表
有没有办法记录谁在临时表中进行了更改?我可以看到日期范围,但看不到向架构添加新列的方法?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
时态表不跟踪“谁”,只跟踪“何时”。您可以向表中添加一列来跟踪谁执行了最后一次修改,并在 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.