How to implement objects (entities) cloning in NHibernate? Each entity class has such properties:
public virtual IList<Club> Clubs { get; set; }
Also, the entity class inherits BaseObject. I tried to implement the solution using XML serialization, but it's not possible to serialize interfaces.
Thank you for your answers!