Fluent Nhibernate 中的自定义 Tuplizer
我们正在努力实现这个壮观的 hack,已经了解了这么多,
foreach (var persistentClass in configuration.ClassMappings)
{
persistentClass.AddTuplizer(EntityMode.Poco, typeof(NullableTuplizer).AssemblyQualifiedName);
}
但不知道这个循环应该去哪里,因为我们使用的是流畅的 NHibernate。有什么建议吗?
We're trying to pull off this spectaular hack, and have got as far as
foreach (var persistentClass in configuration.ClassMappings)
{
persistentClass.AddTuplizer(EntityMode.Poco, typeof(NullableTuplizer).AssemblyQualifiedName);
}
but have no idea where this loop should go given we're using fluent NHibernate. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)