I have two tables in my Sybase database A and B. The relationship between them is one-to-many where an entry in A may have one or more entries in B associated with it (via ID).
I am trying to replicate this relationship in Java code, where I'd have a data structure for an entry in table A that would contain a list of entries from table B associated with it. Is there a way to create some sort of mapper in Spring where I can avoid loading two result sets and then trying to consolidate them together?