获取最新批准的会员

发布于 2024-10-16 07:35:30 字数 62 浏览 2 评论 0原文

我将 ASP .NET MVC 2.0 与默认成员资格提供程序一起使用。我该如何检索最新注册的批准会员的姓名?

I'm using ASP .NET MVC 2.0 with the default membership provider. How would I go about retrieving the name of the latest registered approved member?

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

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

发布评论

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

评论(1

孤云独去闲 2024-10-23 07:35:30

据我所知,Membership 类没有“开箱即用”的方法允许您执行此操作。
您需要使用 ADO.NET 或您首选的 ORM 针对 aspnet_Membership 表运行自定义查询或存储过程。您需要查询的关键列是 CreateDateIsApproved

As far as I can tell there are no 'out of the box' methods of the Membership class that allow you to do this.
You will need to run a custom query or stored procedure against the aspnet_Membership table using either ADO.NET or your preferred ORM. The key columns you need to query against are CreateDate and IsApproved.

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