We are using Internet Application in ASP.Net MVC 4 project. Since Simplemembership is out of the box feature hence membership creates the following table on our database :
webpages_Membership
webpages_Roles
webpages_UsersInRoles
But our database team, is not ready to have table names prefix with "webpages". They are ok to create the following table:
Project_Membership
Project_Roles
Project_UsersInRoles
where "Project" prefix is specific to our project.
Now is it ok if we create a Database view as webpages_Membership on top of SC_Membership table and so our membership provider should connect to view for authenticating the user. Is it possible. Any thought on this would be highly appreciated.
-Sanjiv