I want to get two values from two different sql tables.
In sql we would do "Select a.value, b.value from A a inner join B b on a.id = b.id where ..."
Is it possible to do it with panache? Like join two entities or something like that?
Can't really find much about joins with quarkus panache.