有没有办法获取 ASP.NET 成员资格中的所有配置文件
ASP.NET 成员资格中是否有 API 可以一次性获取所有用户配置文件。如果没有,是否有另一种好方法来获取所有用户的所有姓名(名字+姓氏)。我试图避免通过一次获取一个用户配置文件而生成的许多 SQL 请求。
Is there an API in the ASP.NET membership, implementation to get all user profiles at once. If not, is there another good way to get all the names (first + last) of all the users. I'm trying to avoid the many SQL requests generated by getting the user profiles one at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ProfileProvider.GetAllProfiles()
。不过,我仍然建议仅将名字和姓氏添加到 MembershipUser 中。您需要将您的提供程序转换为具体类型,如果您想更改它,它会很脆弱。
ProfileProvider.GetAllProfiles()
.I'd still recommend just adding first and last names to the MembershipUser though. You'll need to cast your provider to the concrete type, which is brittle if you ever want to change it.
更新:
配置文件数据存储方式面临的挑战是属性名称和值被打包并存储在配置文件数据库中的两列中。如果您运行 aspnet_Profile_GetProperties 存储过程,您将看到这一点。
没有现成的存储过程可以获取所有用户的配置文件数据。不过,对 aspnet_Profile_GetProperties 进行快速修改即可为您做到这一点。
Update:
A challenge with the way profile data is stored is that the property names and values are packed and stored in two columns in the Profile database. If you run the aspnet_Profile_GetProperties sproc you will see that.
There is no out-of-the-box sproc that gets profile data for all users. A quick modification to the aspnet_Profile_GetProperties would do that for you though.