How to clone objects in NHibernate?
- by Anry
How to implement cloning of objects (entities) in NHibernate? In the classes of entities has properties such
public virtual IList<Club> Clubs { get; set; }
All classes are inherited from BaseObject.
I tried to implement using xml serialization, but the interfaces are not serialized.
Thank you for your answers!