有没有办法获取 ASP.NET 成员资格中的所有配置文件

发布于 2024-08-04 10:23:05 字数 111 浏览 2 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

最丧也最甜 2024-08-11 10:23:05

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.

自由如风 2024-08-11 10:23:05

更新

配置文件数据存储方式面临的挑战是属性名称和值被打包并存储在配置文件数据库中的两列中。如果您运行 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.

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