In MVC4 I was using the code
Roles.AddUserToRole(User.Identity.Name, "Approved"); Is there any other way of doing the same(adding user to role "Approved") in MVC5 Identity Model?
EDIT: I meant to ask is this the right way of adding a user to a role? Because in a lot of examples they do not use this code.