With ASP.NET Identity 2.0 how do you check if the currently logged on user is in a role? I am using the following, but wondering if there is something more efficient.
The correct way in ASP Identity is as simple as
User.IsInRole("rolename");