Entity Framework 0..1 to 0 relation(实体框架 0..1 到 0 关系)
问题描述
Second 可能引用了 First.但是 First 从来没有提到过 Second.是否可以将此映射与 Entity Framework 4.1 一起应用?
Second may have a reference to First. But First never has a reference to Second. Is it possible to apply this mapping with Entity Framework 4.1?
以前,这是我的解决方案:
Previously, that was my solution:
Second 可以包含 First 的一个实例(取决于某种使用属性).First 不包含 Second 的任何实例.
Second could contain one instance of First (dependent on some kind of Usage-Attribute). First doesn't contain any instance of Second.
推荐答案
只有当外键也是依赖实体的主键时,一对一的关系才有可能.所以正确的映射是:
One-to-one relation is possible only if foreign key is also primary key of dependent entity. So the correct mapping is:
原因是为了在数据库中强制一对一关系,外键在 Second
实体中必须是唯一的.但实体框架不支持唯一键 - EF 的唯一唯一值是主键.这是 EF 的限制.
The reason is that to enforce one-to-one relation in the database foreign key must be unique in the Second
entity. But entity framework doesn't support unique keys - the only unique value for EF is primary key. This is limitation of EF.
Morteza Manavi 的博客.解决方法基于将关联映射为一对多,并通过在自定义数据库初始化程序中引入唯一约束来强制数据库中的唯一性.
There is workaround described on Morteza Manavi's blog. Workaround is based on mapping association as one-to-many and enforcing uniqueness in database by introducing unique constraints in custom database initializer.
这篇关于实体框架 0..1 到 0 关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!