How do i filter users by role id in asp.net.identity 3.0?
I can't navigate to Roles (x => x.Roles) anymore.
Prior version (Asp.net.identity 2.0)
I had been filtering users by role id as following
List<ApplicationUser> adminUsers = _context.Users.Where(x => x.Any(y => y.RoleId == testAdminId || y.RoleId == adminId)).ToList();