We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TorpedoQuery support inner join, left join and right join.
Entity entity = from(Entity.class); SubEntity subEntity = innerJoin(entity.getSubEntities()); Query<String[]> select = select(entity.getCode(), subEntity.getName()); List<String[]> results = select.list(entityManager);