c# - Do Roles and Profiles in ASP.NET MVC3 need changing when porting to MVC5? -
i've created project using asp.net mvc3 , want port mvc5. uses membership, roles , profiles authenticate users, common in mvc3. however, understand mvc5 uses identity system instead of membership. therefore, need update membership logic when porting mvc5. brings me question: same apply roles , profiles? need make changes them in order make them compatible mvc5? if so, links further information appreciated (unless need know can condensed brief stackoverflow answer :p).
roles part of identity system.
profiles own responsibility, implement using own user class in identity.
so yes, have work do.
Comments
Post a Comment