ORM supporting display of typical types

Are there ORM tools for .NET that support generic type mapping?

I present at least two possible display scenarios:

  • Matching individual instances of a typical type
  • Display all possible shared instances (based on constraints and other display types).
+6
c # orm
source share
1 answer

I’ve tried Fluent NHibernate the last couple of months, and I’m sure he can do it. We definitely have common lists as properties of objects. I'm not sure I fully understand your second requirement. I am implementing a generic repository that accepts any type, and it works great if that is what you are talking about?

+1
source share

All Articles