Subsonic 3 使用 User.Identity.Name 与 Environment.Username 作为审计字段?

发布于 2024-08-02 20:08:25 字数 260 浏览 4 评论 0原文

使用 Subsonic v3.0.0.3 并且 Update() 和 Add() 方法似乎使用 Environment.Username 作为 ModifiedBy 和 CreatedBy 字段。

对我来说,使用 MVC/Asp.net User.Identity.Username 的最佳方法是什么,因为我们的用户集合中有许多“Bob”名称,并且当前使用 CreatedBy = 'Bob' 创建的新记录是没有 CreatedBy = 'bsmith' 那么有用,

谢谢!

Using Subsonic v3.0.0.3 and seems the Update() and Add() methods are using the Environment.Username for the ModifiedBy and CreatedBy fields.

What would be the best way for me to get this to use the MVC/Asp.net User.Identity.Username as there are many 'Bob' names in our user collection and currently having a new record created with CreatedBy = 'Bob' is not as helpful as CreatedBy = 'bsmith'

Thanks!

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

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

发布评论

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

评论(1

掩耳倾听 2024-08-09 20:08:25

您可以编辑 ActiveRecord.tt 模板文件并

Environment.Username 

用此替换所有实例吗?

HttpContext.Current.User.Identity.Username

Could you edit the ActiveRecord.tt template file and replace all instances of

Environment.Username 

with this?

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