使用 NHibernate 映射约束多对多关系的最佳方法是什么?
我有两个实体,由数据库中的两个表表示,由一个链接表连接,两个外键上的每个表都有唯一的约束。 (请参阅此问题 了解详细信息)。链接表允许多对多关系,但唯一约束确保实际上只有一对一关系。
这个问题的一个很好的类比是汽车和停车库空间。有很多车和很多空间。一个空间可以容纳一辆车,也可以是空的;一辆车一次只能停在一个车位,或者没有车位(不能停放)。
我们有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 hbm 中可能会出现这样的
情况:
it is possible like this
in hbm something along: