I am having a parent table and child table in Oracle Schema. Also created a Hibernate Classes for this tables. for e.g. parent table Called A which has primary key p_key and Child table has Column Called parent_key and Third Class P_Key.
So I have created OneToMany mapping in the parent class and created Set Varibale.
But When I retreive Records only one record is fetched to the set Where Table has more than one records in it.
mapping is:
@OneToMany
@JoinColumn(name = "PK_ACK_FILE_ID")
private Set<SubmissionAckFileLink> subFilesLink;
Any one please tell me why hibernate sees only one record in the table?