Hi all,
I'm building a WCF service that emits a domain object that contains a Set<>, I noticed that when NHibernate loads an object containing a collection, it replaces the implementation of the iesi.collection with a NHibernate implementation (NHibernate.Collection.Generic.PersistentGenericSet).
The consumers of my service will not have the nhibernate.dll.
Is there any way to make NHibernate not switch out the implementation of the collection? I tried setting lazy to false but this had no impact.
thanks for your help.
|