创建一个基于会员提供者的外观
我在 ASP.NET MVC 中使用成员资格提供程序,对于大多数数据访问,我使用 nHibernate 和存储库模式。 您是否建议在成员资格提供程序上使用外观,以便我可以创建一个存储库并使其与我的实体模型的其余部分更加内联地运行? 我还添加了额外的功能,例如向角色添加功能的能力以及创建外观将使所有类变得更好一些。
其他人对会员提供者做了什么?
I am using the Membership Provider in ASP.NET MVC and for most data access I use nHibernate and a repository pattern. Do you recommend using a Facade over the Membership Provider so I can create a repository and make it operate a bit more inline with the rest of my entity model? I also have added additional functionality like the ability to add functions to a role and creating the facade would make the classes all a bit nicer.
What have other people done with Membership Provider?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经解决了这个问题。 通过以下方式:
web.config
:然后我按照以下方式挂钩
Application_AuthenticateRequest
:ContainerProvider.RequestContainer.Resolve(); 调用是对 Autofac 容器的,但您可以执行任何您需要/想要的操作到这里。
AppIdentity
和AppPrincipal
类是自定义的,因此我可以访问我的角色,但它们并不那么复杂。I have solved this exact problem. In the following manner:
web.config
:Then I hook
Application_AuthenticateRequest
something along the lines of:The
ContainerProvider.RequestContainer.Resolve<ISecurityService>();
call is to a Autofac container, but you can do anything you need to / want to here.The
AppIdentity
andAppPrincipal
classes are custom so I can access my roles, but they are not that complicated.您可以通过继承 MembershipProvider 基类来为站点实现您自己的 MembershipProvider。 然后只需重写通过 nHibernate 执行数据访问所需的方法即可。
您真正需要实现的唯一函数是 ValidateUser。 其余的取决于您在与 MembershipProvider 相关的站点中使用的功能。
You can implement your own MembershipProvider for the site, by inheriting the MembershipProvider base class. Then just override the methods you need to perform the data access through nHibernate.
The only function you really have to implement is ValidateUser. The rest is dependent on the functionality you use in the site relating to the MembershipProvider.