Are there ORM tools for .NET supporting mapping of generic types?

I imagine at least two possible mapping scenarios:

  • Mapping of particular generic type instances
  • Mapping of all possible generic instances (based on constraints & other mapped types).
link|improve this question

feedback

1 Answer

I've been trying out Fluent NHibernate the last couple of months, and I'm pretty sure it can do that. We've certainly got generic lists as properties on objects. I'm not sure that I completely understand your second requirement. I've implement a generic repository that takes any type, and that works fine, if that's the sort of thing you are talking about?

link|improve this answer
Note that Fluent NHibernate compliments NHibernate (very well), but you could use plain NHibernate without Fluent. – tobinharris Feb 19 '10 at 17:28
Also note that Ayende posted this in 2007. ayende.com/Blog/archive/2007/11/14/…. I haven't needed to use Generic types in my models, but it might help you get a feel for the issues with mapping generics in NH. – tobinharris Feb 19 '10 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.