Я хочу сделать этот выбор, используя linq:
Select cd.name from Content c, ContentDetail cd
where c.id_contentTypeID = contentTypeId and
c.id_contentID = contentID and
cd.id_contentID = c.contentID;
Я сделал следующее, но не знаю, как завершить запрос:
var list =
from c in guideContext.Content,
dc in guideContext.ContentDetail
where c.id_content == contentID &&
select dc;
Есть предложения?
Спасибо!