Hello
I have an entity collection into which I load records as they are accessed (using DataAccessAdapter). I don't delete them from the collection (so that if a user goes back to a record, it is still in memory). I am using the FetchEntityCollection routine with a filter to just load the records that I need.
The problem I am having is that if I change a record (in a dialog), I can save it to the database, but then when I try to refresh the collection, the old data remains in the collection (i.e., it does not override the existing data). If I clear the entity collection first, the new data is loaded correctly.
Is there some setting that I should be using to ensure that the newly loaded items overwrite the old items?
Thanks