Fluent NHibernate 尝试使用每个子类一个表来映射子类的子类
我正在构建一个具有大量继承的应用程序,并且有一个部分存在类 A、B 和 C:
类 A
类 B : A
类 C : B
我将子类映射实现为类 B 的每个子类表样式:如下:
class BMap : SubclassMap<B>
{
public BMap()
{
Extends<A>();
KeyColumn("ID");
}
}
效果很好。然而,当我想如下实现C时:
class CMap : SubclassMap<C>
{
public CMap()
{
Extends<B>();
KeyColumn("ID");
}
}
它导致错误
Duplicate class/entity mapping
我浏览了Hibernate/NHibernate论坛但找不到这个问题的答案。
I am building an application with heavy inheritance and have a part where there exists classes, A, B and C with:
class A
class B : A
class C : B
I implemented subclass mapping as a table-per-subclass style for class B as follows:
class BMap : SubclassMap<B>
{
public BMap()
{
Extends<A>();
KeyColumn("ID");
}
}
Which works perfectly. However, when I want to implement C as follows:
class CMap : SubclassMap<C>
{
public CMap()
{
Extends<B>();
KeyColumn("ID");
}
}
It results in the error
Duplicate class/entity mapping
I browsed the Hibernate/NHibernate forum but could not find an answer to this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 NH 3.3.1.4000 中确实可以正常工作
this does work as expected with NH 3.3.1.4000