I'm getting a
"Found shared references to a collection" exception when saving an object.
Does anyone know what this means?
|
|
I'm getting a "Found shared references to a collection" exception when saving an object. Does anyone know what this means? |
||
|
|
|
|
Do you have a reference to any of the objects in the collection somewhere else? Another session, possibly, or even within the same session in another object? Make sure that when you access hibernate, you are controlling the ONLY reference to those objects within any hibernate session. |
||
|
|
|
|
what do your mappings look like? |
||
|
|
|
|
In theory it means that you have 2 records which contain the same reference to another object. At the database level this is most likely a weak entity, however at the code level this is likely to be represented as a collection. Have you copied another records collection? E.g.
This code is for ActiveRecords, but as it is built on top of nHibernate the underlying principles are the same. The interesting thing when i came across this issue was that the collection it referred to was incorrect. It was a different one. If this is your issue try iterating through each item and assigning it to the new collection in stead. E.g.
|
||
|
|
|
|
Thanks a ton (@Xian). I'm a newbie to NHibernate. Your solution save me a lot of time |
||
|
|