I installed MVC 4 when it was in beta, so I didn't get the SimpleMembership library back then. Now I've built a large project using the old MembershipProvider and was wondering how to upgrade from that to WebMatrix SimpleMembership
.
I've already created the database schema and EF model and mapping classes. Now I'm wondering how I can upgrade the rest (install required libraries, etc.)
Is there some upgrade path
I can follow, just to bypass screwing up my project?
Here is the upgrade path I used:
[with SimpleMembership]
[don't overwrite AccountController]
[don't overwrite AccountModels]
Entity Framework -> Reverse Engineer Code First
, to generate all EF entity/mapping classes for all SQL tables.UserProfile
entity and UserProfileMap
classes, because they come with SimpleMembership's AccountModels
.