gpt4 book ai didi

entity-framework - 我们可以在 EF 中进行交叉连接吗?

转载 作者:行者123 更新时间:2023-12-04 02:20:14 26 4
gpt4 key购买 nike

所以基本上我问了这个问题:

The query contains references to items defined on a different data context

但是这次我是在 EF 中进行的。 EF是否支持两个表之间的交叉连接?

最佳答案

您不能在不同的数据上下文之间进行连接。您必须使用 linq-objects 进行连接

var crossJoin = from a in context.TableA.AsEnumerable()
from b in context2.TableB.AsEnumerable()
select new
{
a,
b
};

关于entity-framework - 我们可以在 EF 中进行交叉连接吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8535960/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com