使用 Sharp Architecture 和 Fluent NHibernate 忽略基类
使用 Sharp Architecture 1.9,
我有一个继承自 Sharp Arch Entity 类的基类
public class LineItem : EntityWithTypedId<Guid>
{
// various properties
}
,然后是两个继承的类:
public class BasketItem : LineItem { public virtual Basket Basket; ...}
public class OrderItem : LineItem { public virtual Order Order ...}
在我的数据库中,我有两个表。购物篮项目和订单项目。
我的问题:Fluent NHibernate (AutoMapping) 正在尝试映射 LineItem。
我的问题:如果我仍然想将 EntityWithTypedId 属性映射到 BasketItems 和 OrderItems 表,如何告诉 NHibernate 忽略 LineItem 映射?
Using Sharp Architecture 1.9
I have a base class that inherits from the Sharp Arch Entity class
public class LineItem : EntityWithTypedId<Guid>
{
// various properties
}
and then two classes that inherit:
public class BasketItem : LineItem { public virtual Basket Basket; ...}
public class OrderItem : LineItem { public virtual Order Order ...}
In my database I have two tables. BasketItems and OrderItems.
My problem: Fluent NHibernate (AutoMapping) is trying to map LineItem.
My question: How do I tell NHibernate to ignore the LineItem mapping given that I still want to map the EntityWithTypedId property to the BasketItems and OrderItems table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于basketitem和orderitem的表结构是什么。您使用的是每个具体类的表还是每个类层次结构的表?
使用 Fluent NHibernate 进行继承映射
it depends on what the table structure of the basketitem and orderitem are. Are you using the table per concrete class or table per class hierarchy?
Inheritance Mapping with Fluent NHibernate
解决方案是将这样的代码添加到我的自动映射配置中:
更多信息此处。
The solution was to add code like this to my automap configuration:
More info here.