When using the link method in db.form() it is not possible to invoke a join clause within the link and the same happens in the join, for example:
_db.form('client_service')
.link(
_db.link('client')
.join(
_db.manyToOne(
'netuno_user',
'client_user_id
)
)
)