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?
source
share