nhibernate-core icon indicating copy to clipboard operation
nhibernate-core copied to clipboard

Unable to Implement Custom Tuplizer Due to Internal Constructor in DynamicMapEntityTuplizer

Open Ganesh13024 opened this issue 1 year ago • 0 comments

In the NHibernate documentation (Chapter 4.5. Tuplizers), it's mentioned that it's possible to extend NHibernate.Tuple.Entity.DynamicMapEntityTuplizer and create a custom tuplizer. However, when attempting to do so, I found that the constructor for this class is marked as internal, which prevents users from implementing a custom tuplizer if NHibernate is used as a NuGet package.

The constructor of DynamicMapEntityTuplizer should be public, allowing developers to extend this class and implement custom tuplizers as described in the documentation.

Ganesh13024 avatar Aug 26 '24 13:08 Ganesh13024