Got the following ProviderException :
The Role Manager feature has not been enabled.
So far so good.
Is there somewher
I found this question due the exception mentioned in it. My Web.Config didn't have any tag. I realized that even if I added it (as Infotekka suggested), it ended up in a Database exception. After following the suggestions in the other answers in here, none fully solved the problem.
Since these Web.Config tags can be automatically generated, it felt wrong to solve it by manually adding them. If you are in a similar case, undo all the changes you made to Web.Config and in Visual Studio:
Check your Web.config and now you should have at least one tag inside Profile, Membership, SessionState tags and also inside the new RoleManager tag, like this:
Add enabled="true" like so:
Press F6 to Build and now it should be OK to proceed to a database update without having that exception:
update-database -verbose and the Seed method will run just fine (if you haven't messed elsewhere) and create a few tables in your Database;