Hi there,
suppose I have a User class
public class User {
private Address address;
...
}and a select command that looks like: cmd.select(USER.USER_ID, USER.FIRST_NAME, USER.LAST_NAME ....) cmd.select(ADDRESS.STREET, ADDRESS.POSTAL_CODE ...) cmd.join(USER.ADDRESS_ID, ADDRESS.ADDRESS_ID) I was having a look at the tutorials, but did not find a way or method to get DBReader to populate the "address" property of the user object. How can that be done? Cheers!
