Hi,
What are the ways to refresh a one to many association?
I know I can refresh it by calling something like:
entityManager.refresh(owningEntity);
But are there other ways? For example, can I refresh only the association without refreshing the owning entity?
Furthermore, can I set some property somewhere that would specify that I want to refresh every time the association is accessed by the program because I know that other applications are concurrently modifying the database and I need to see their changes?
Best regards,
Bisser