使用 LINQ EF 进行复杂联接

发布于 2024-12-13 01:58:00 字数 535 浏览 0 评论 0原文

如何使用 LINQ to EF 连接两个查询?我需要返回给我的结果集,其中包括来自两个组合查询的连接数据。

1

select StockNo, Description 
from VehicleOption_New 
where StockNo in 
(
    select v.StockNo
    from Vehicles v
    join StatusDescription s 
    on v.Status = s.StatusId
    where NewOrUsed = 'n' and v.model = 'cts' 
)
and color is not null

2

select v.StockNo, s.StatusDescriptionText
from Vehicles v
join StatusDescription s 
on v.Status = s.StatusId
where NewOrUsed = 'n' and v.model = 'cts'  

How can I join the two queries using LINQ to EF? I need the result set returned to me that includes joined data from the 2 queries combined.

1

select StockNo, Description 
from VehicleOption_New 
where StockNo in 
(
    select v.StockNo
    from Vehicles v
    join StatusDescription s 
    on v.Status = s.StatusId
    where NewOrUsed = 'n' and v.model = 'cts' 
)
and color is not null

2

select v.StockNo, s.StatusDescriptionText
from Vehicles v
join StatusDescription s 
on v.Status = s.StatusId
where NewOrUsed = 'n' and v.model = 'cts'  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你如我软肋 2024-12-20 01:58:00

一旦有了等效的 EF 查询,您就可以使用 Concat()Union() 来合并结果。

Once you have the equivalent EF queries you can use either Concat() or Union() to combine the results.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文