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.
this worked for me hope this helps...
If HttpContext.Current.User.IsInRole("admin") Then adminmnu.Visible = True End If