使用夏普架构 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 ...}
在我的数据库中,我有两个表。BasketItems 和 OrderItems。
我的问题:Fluent NHibernate (AutoMapping) 正在尝试映射 LineItem。
我的问题:我如何告诉 NHibernate 忽略 LineItem 映射,因为我仍然想将 EntityWithTypedId 属性映射到 BasketItems 和 OrderItems 表?