使用 NHibernate 映射约束多对多关系的最佳方法是什么?

发布于 2024-11-27 07:26:00 字数 591 浏览 1 评论 0原文

我有两个实体,由数据库中的两个表表示,由一个链接表连接,两个外键上的每个表都有唯一的约束。 (请参阅此问题 了解详细信息)。链接表允许多对多关系,但唯一约束确保实际上只有一对一关系。

这个问题的一个很好的类比是汽车和停车库空间。有很多车和很多空间。一个空间可以容纳一辆车,也可以是空的;一辆车一次只能停在一个车位,或者没有车位(不能停放)。

我们有一个 Cars 表和一个 Spaces 表以及称为 Parking 的链接表。下面是链接表:

create table parking (
  car_id references car,
  space_id references space,
  unique car_id,
  unique space_id
);

有没有一种方法可以在 NHibernate 中映射这种关系,使得每个实体都拥有表示相关实体的单个属性,而不是一个集合?

I have two entities represented by two tables in the database, joined by a linking table with a unique constraint on each of the two foreign keys. (See this question for details). The linking table allows for a many-to-many relationship, but the unique constraint ensures that there is only a one-to-one relationship in practice.

A good analogy to the problem is cars and parking garage spaces. There are many cars and many spaces. A space can contain one car or be empty; a car can only be in one space at a time, or no space (not parked).

We have a Cars table and a Spaces table and the linking table called Parking. Here is the linking table:

create table parking (
  car_id references car,
  space_id references space,
  unique car_id,
  unique space_id
);

Is there a way to map this relationship in NHibernate such that each entity holds a single property representing the related entity, rather than a collection?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不及他 2024-12-04 07:26:00

在 hbm 中可能会出现这样的

class Car
{
    public Space Space { get; set; }
}

public CarMap()
{
    Join("parking", join =>
    {
        join.KeyColumn("car_id");
        join.References(car => car.Space, "space_id");
    });
}

情况:

<class name="car">

  <join table="parking">
     <many-to-one name="Space" column="space_id"/>
  </join>
</class>

it is possible like this

class Car
{
    public Space Space { get; set; }
}

public CarMap()
{
    Join("parking", join =>
    {
        join.KeyColumn("car_id");
        join.References(car => car.Space, "space_id");
    });
}

in hbm something along:

<class name="car">

  <join table="parking">
     <many-to-one name="Space" column="space_id"/>
  </join>
</class>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文