I am not sure about this but the main problem is that the .Net Framework provides HashSet in version 3.5; http://msdn.microsoft.com/en-us/library/bb359438.aspx
<http://msdn.microsoft.com/en-us/library/bb359438.aspx>but they didn't provide the INTERFACE.... until .net 4: http://msdn.microsoft.com/en-us/library/dd412081.aspx When you retrieve an instance of your object from nhibernate, you don't get a HashSet in the field, you get something like a PersistentGenericSet (an implementation of the interface that is nh internals). So, i think is not possible to replace iesi hashedset with hashset so far. -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
