不确定如何将以下 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