不存在关联时选择相关实体
EF4 非常适合提取关联数据,但是当关联不明确时该怎么办?一个例子说明了我的情况:
MasterTable 有一个 child1Id 和 child2Id 列。
有两张表Child1和Child2,对应主键child1Id和child2Id。有 Master、Child1 和 Child2 实体。
Master 和 Child1 / Child2 表或实体之间没有外键或实体框架关联。
当我只有主表中匹配的子ID时,如何从两个子表中选择主记录和相应的子记录?
我无法改造关系或关联。
理查德
EF4 is great for pulling in associated data but what do you do when the association is not explicit? An example illustrates my situation:
MasterTable has a child1Id and child2Id column.
There are two tables Child1 and Child2 with corresponding primary key child1Id and child2Id. There are Master, Child1 and Child2 entities.
There is no foreign key or entity framework association between Master and Child1 / Child2 tables or entities.
How can I select the master records and corresponding child records from the two child tables when all I have are the matching child Ids in the master?
I can't retrofit a relationship or association.
Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须通过 linq toEntity 手动选择它们。以下是如何在两个表之间进行左连接:
顺便说一句。如果您的实体具有包含来自其他实体的 PK 值的属性,您可以在 EF 设计器。在这种情况下,您将能够使用导航属性。
You must select them manually by linq to entities. Here is how to do left join between two tables:
Btw. if your entities have a property which contains a value of PK from other entity you can create relation in EF designer. In such case you will be able to use navigation properties.