I am trying to create a clone of a persisted object graph and it seems like Session.Evict(PersistedObject) is the way to do this. By removing the instance from the Session cache, I can then set persist it as a new "cloned" record.
I have tried three approaches and each has been unsuccessful.
- Use eager loading to get my object graph from the db and attempt to Evict it. This results in a KeyNotFoundException
- Use Session.Load(objectId) and attempt to evict it. Evict works, but I only have a proxy to work with and not the hydrated object I need
- Use Session.Get(objectId) and attempt to Evict it. This results in a KeyNotFoundException
I've struggled to find any real documentation or examples on this subject. I've found some that come close, but nothing that really explains where I'm going wrong
- NHibernate Session.Evict()
- NHibernate evict by id
- http://thecuttingledge.com/?tag=nhibernate#.V1XQHZF96M8
- How do I copy an object with NHibernate
- https://sonyarouje.com/2013/11/13/keynotfoundexception-from-nhibernates-session-evict/
With regards to the last link, I have checked my Equals and GetHashCode methods, but they do not get hit when calling Evict. Also, Session.Contains(objectToBeEvicted) returns true just prior to the Evict()
As for the second question in the title - is there a better way to approach this problem? This can't be such a rare scenario
Thanks in advance
Try to make a deep clone (.Net Deep cloning - what is the best way to do that?) of your object and then add it to the session.