Setup for the questions below:
The InitializeSimpleMembershipAttribute.cs filter is a component that comes as part of the MVC 4 Internet Application template.
It already contains the code:
WebSecurity.InitializeDatabaseConnection("DefaultConnection", "UserProfile", "UserId", "UserName", autoCreateTables: true);
Questions:
1. Do I need to alter this default code in any way to get it to work?
2. What does (or should) this code result in? What am I looking for?
|