asp.net 会员提供程序通过 UserId 获取 UserName

发布于 2024-10-12 05:14:00 字数 135 浏览 4 评论 0原文

我看到很多问题询问已知的用户名以及如何相应地检索 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 技术交流群。

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

发布评论

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

评论(1

撞了怀 2024-10-19 05:14:00
MembershipUser user = Membership.GetUser();
if (user != null)
    string name = user.UserName;

在内部,这将访问 ASP.NET 用户表。没有办法避免这种情况。

MembershipUser user = Membership.GetUser();
if (user != null)
    string name = user.UserName;

Internally, this will access the ASP.NET user table. There's no way to avoid that.

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