I have two tables Like User and Location and they are mapped by one to many (Location is lazy loaded)
Here are the operations performed (Same persistence manager for both requests)
Ist request-> fetching user from database(persistence manger has set with property "datanucleus.IgnoreCache", true ). So getting user from database by passing cache. And location data is extracted by calling user.location
Changing values in database manually on user and location
2nd request-> fetching user from database as the cache set to false user changes are appeared but when getting location from user [user.location] old data is appearing.
As persistence manager cache is set to false, why in lazy loading it is fetching from cache instead of database ?