如何从 aspnet_users 获取所有用户名?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要通过您的网络服务公开此信息。只需在您的服务上创建返回您需要的数据的自定义方法即可。
成员资格提供程序是实现数据库接口的常用方法。请参阅: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).