nhibernate-core
nhibernate-core copied to clipboard
Unable to Implement Custom Tuplizer Due to Internal Constructor in DynamicMapEntityTuplizer
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.