Before the update of the dll\'s in the Entity Framework i was able to do this
user.Roles.Where(r => r.Role.Name == \"Admin\").FisrtOrDefault(); >
user.Roles.Where(r => r.Role.Name == \"Admin\").FisrtOrDefault();
If your aim is to check if a user is in a role you can access it from the IPrincipal.User object in an action
User.IsInRole("Admin");