Overriding ASP.NET Membership in ASP.NET MVC 4

In previous versions of ASP.NET, I could change the membership provider settings in web.config to point to my custom implementation.

I am trying to imitate this in MVC4, but it seems that the template has changed a bit. Apparently, it uses WebMatrix.WebData.WebSecurity instead of the classic membership classes. Do I need to remove all this and replace it with membership calls, as I did before, or is there a way to use the new WebMatrix.WebData.WebSecurity classes with my custom membership implementation?

+5
source share
1 answer

, . SimpleMembership (webmatrix.webdata.websecurity)

+2

All Articles