gpt4 book ai didi

c# - 将带连接的 SQL 查询转换为 lambda 表达式

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

不确定如何将以下 sql 转换为 lambda 表达式。我的数据库在一对多关系中使用引用完整性和与表 Content_Training 相关的表 Content(1 个内容可以有多个 content_training)

select c.ContentId, c.Name, ct.TrainingTypeId 
from dbo.Content c left join dbo.Content_Training ct on c.ContentId = ct.ContentId
where c.PublishDate is not null
order by ct.TrainingTypeId, c.Name

最佳答案

试试这个查询:

var results = (from c in dbcontext.Contents
join ct in dbcontext.Content_Trainings on c.ContentId equals ct.ContentId into t
from rt in t.DefaultIfEmpty()
select new
{
c.ContentId,
c.Name,
TrainingTypeId = (int?)rt.TrainingTypeId
}).OrderBy(r => r.TrainingTypeId)
.ThenBy(r => r.Name);

关于c# - 将带连接的 SQL 查询转换为 lambda 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22951644/

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