Hi,
I have a Spring Data project, using Java-based @Configuration with dataSource() and entityManagerFactory() .
Right now I'm tracing through the database using a separate instance of 0xDBE. I manually have to follow the foreign key references to to the other tables.
Does IntelliJ have a feature to show me the table rows the way JPA understands it? So that I can just click on a row (object) and follow the subclass inheritance and the other rows (objects) that are referred to.
Thanks!
Miguel