使用 Sharp Architecture 和 Fluent NHibernate 忽略基类

发布于 2024-12-02 19:37:54 字数 566 浏览 1 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

缱绻入梦 2024-12-09 19:37:54

这取决于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

野稚 2024-12-09 19:37:54

解决方案是将这样的代码添加到我的自动映射配置中:

AutoMap.AssemblyOf<Entity>(cfg)
  .IgnoreBase<Entity>();

更多信息此处

The solution was to add code like this to my automap configuration:

AutoMap.AssemblyOf<Entity>(cfg)
  .IgnoreBase<Entity>();

More info here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文