> > > Currently my project wants to implement nhibernate as our Data Access > layer. But we have custom collections using KeyedCollection (C# > collection). Is it possible cause most nhibernate i see is all using > IList or Idictionary. And if so, how to go about to do it? Thanks.
Although it implements IList<T> AFAIK this is not supported. Especially because KeyedCollection is not an interface type. KeyedCollection is both a list and a dictionary which is pretty strange. Isn't it possible to migrate to IDictionary? -- 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.
