Skip to content
Advertisement

What am I doing wrong in this one to one bi-directional mapping?

I have two classes: Person and PersonDetail

Person:

JavaScript

PersonDetail

JavaScript

I have set up a bi-directional one-to-one mapping between these classes. I am trying to save a person and that person’s details and then I am trying to fetch the person using the person’s details. The code for that is:

JavaScript

My test is failing because the person detail object has a null value for the associated person. Can someone help me?

Advertisement

Answer

I tried fetching the person details in another session and that worked. I could see the details of the person. The edited code is:

JavaScript

Is this correct? Or can this be done in the same transaction?

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement