The answer here contained the following query:
var query = from role in _db.Roles
where role.Name == roleName
from userRoles in role.Users
join user in _db.Users
on userRoles.UserId equals user.Id
select user;
How would I reproduce the same query using Linq method syntax?