gpt4 book ai didi

c# - Linq 选择加入

转载 作者:太空宇宙 更新时间:2023-11-03 19:59:01 25 4
gpt4 key购买 nike

我有一个基本的选择任务要执行

var query = db.Candidate.Where(.....

但我想将位置放在另一个名为 Tag 的表上

在 sql 中是

select * from Candidate
join Tag on Tag.candidateId = Candidate.tagId and Tag.tagId = 7

从而得到所有标签为 7 的 Candidates

我正在尝试直接使用 Where 执行此操作,这可能吗,或者我是否需要使用 Linq to SQL。

最佳答案

您可以在 LINQ 中使用 Join 来执行此操作:

var candidates = from candidate in db.Candidates
join on tag in db.Tags
where candidate.CandidateId == tag.TagId
select candidate

关于c# - Linq 选择加入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30456688/

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