Hello,
I’m new to Envers and probably I’m using it wrong but I tried for several hours and I can’t figure out what the problem is.
There is a main entity with relational dependencies to other entities.
A->B->C
A_aud etc are created and changes are written to them.
Let’s say some changes have been made to ID 1 of Entity A and its relations. revision 1 is in A_aud, rev 2 in C_aud and rev 3 in B_aud.
Now I would like to get a List with all 3 revisions and all data loaded, so no property of entity B or C is null.
Is this possible and if so, how can I achieve this?
So far I have only received a list of the revisions of A_aud (so in my example only rev 1) and all items in the list only contain proxies for the other entities and all properties are null.
Best regards
Proton