Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让 ADO.NET 实体生成 1:1 导航属性?如果我做外键,我总是得到 1:N 导航属性。
是的 - 这是可能的。我不知道在 Designer 中该做什么,但尝试更改 Multiplicity somewer。对不起!很少使用 Desinger - 更多地使用代码生成。
如果我在 EntityA 的数据库中有这样的外键约束:FOREIGN KEY (FIELD_X) REFERENCES ENTITYB (FIELD_Y),那么当您生成 edmx 时,您应该在 EntityA 上获得单实例导航属性(例如:EntityA.EntityB) .