如何从 aspnet_users 获取所有用户名?

发布于 2024-10-15 22:10:06 字数 262 浏览 0 评论 0原文

我正在使用 System.Web.ApplicationServices.AuthenticationService 进行基于表单的身份验证。

身份验证是由 .LoginAsync 根据 .GetRolesForCurrentUserAsync 获取的用户角色完成的。

如何查询数据库获取系统中所有用户的列表?我需要该列表来填充组合框,以便用户可以在系统中选择要连接的联系人,而不是简单地键入姓名并希望没有拼写错误。

有办法做到这一点吗?

多谢。

I am using the System.Web.ApplicationServices.AuthenticationService for Form Based Authentication.

The authenication is done by .LoginAsync based on the user roles got by .GetRolesForCurrentUserAsync.

How to query the database to get a list of all users in the system? I need the list to populate a combobox so the users can pick a contact within the system to connect to instead of simply typing the names and hoping for no typos.

Is there a way to do that?

Thanks a lot.

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

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

发布评论

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

评论(1

愚人国度 2024-10-22 22:10:06

您需要通过您的网络服务公开此信息。只需在您的服务上创建返回您需要的数据的自定义方法即可。

成员资格提供程序是实现数据库接口的常用方法。请参阅:http://msdn.microsoft.com/en -us/library/system.web.security.membershipprovider.aspx。这当然很有效,尽管我发现提供者经常使事情变得复杂,所以只需使用我关心的几个方法来实现我自己的接口即可。然后只需访问数据库,无论您已经在做什么(NHibernate、EF、LLBLGen、ADO.Net 等)。

You'll need to expose this information through your web service. Just make custom methods on your service that returns the data you need.

The Membership Provider is a common way to implement the interface to your database. See: http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.aspx. This certainly works good, though I find the provider often complicates things so just implement my own interface using the few methods I care about. Then just access the database however you are already doing (NHibernate, EF, LLBLGen, ADO.Net, etc).

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