asp.net 会员提供程序通过 UserId 获取 UserName
我看到很多问题询问已知的用户名以及如何相应地检索 UserId。反过来又如何呢?
由于某种原因,我有 UserId,但我不想将 aspnet_User 表包含到我的数据实体中。有什么方法可以检索用户名而不查询 aspnet_User 表吗?
I have seen a lot of question asking about known user name and how to retrieve UserId accordingly. How about the other way around?
For some reason I have UserId, but I don't want to include aspnet_User table into my data entities. Is there any way I can retrieve the user name without querying against aspnet_User table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在内部,这将访问 ASP.NET 用户表。没有办法避免这种情况。
Internally, this will access the ASP.NET user table. There's no way to avoid that.