hi,
i'm still testing objectdb together with spring-data-jpa.
i made a test which should simulate 4 requests
1. save entity
2. read an existing entity, add onetomany relation
3. read an existing entity, add another onetomany relation
4. read entity, get relations.
i have the feeling this is not the optional way to test this, because of the differnt transaction behavior.
the test is not transactional, but the spring repository methods are.
anyway, the expected result is in the database, one entity with 2 related entities.
if i use EAGER the test pass, if not the related entity list is empty.
what am i doing wrong?