I’m using asp.net mvc. Everytime I run/compile the program it creates membership and role tables. Is there a way to disable or stop this? I’m not using those tables. I created my own tables on login. please advice, thanks.
I’m using asp.net mvc. Everytime I run/compile the program it creates membership and role
Share
It’s probably because of the built in membership provider.
In a standard new ASP.NET MVC 3 project choosing “Internet Site” option on creation, the web.config file contains the following parts:
and
and
Those may be the reason the tables get created.