I am using JPA for my project. I am stuck with getting to retrieve entities in a OneToMany relation.
Here is the scenario.
My Entities are
EntityX -Id -name -etc
EntityY -Id -name -etc
EntityZ -Id -name -etc
EntityD -Id -EntityRefType (Enum of X/Y/Z) -EntityRefId (Can be X.id Or Y.id or Z.id based on the entity ref type)
Within EntityX How do i specify that the EntityRefType has to be X?:
EntityX ...
@OneToMany(fetch = fetchtype.lazy)
@JoinColumns{ @JoinColumn(name = "EntityRefId"), ??? }
List<EntityD> entityDs;
...
I need help to write out the relation in entity X to load certain list of entityD values.
Thanks for the help