How to clone objects in NHibernate?

Posted by Anry on Stack Overflow See other posts from Stack Overflow or by Anry
Published on 2010-03-11T17:19:07Z Indexed on 2010/04/12 7:33 UTC
Read the original article Hit count: 669

Filed under:
|
|
|

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!

© Stack Overflow or respective owner

Related posts about nhibernate

Related posts about c#