获取最新批准的会员
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,
Membership
类没有“开箱即用”的方法允许您执行此操作。您需要使用 ADO.NET 或您首选的 ORM 针对
aspnet_Membership
表运行自定义查询或存储过程。您需要查询的关键列是CreateDate
和IsApproved
。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 areCreateDate
andIsApproved
.