Hi!
I want to make this select using 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;
I have done the following but I don't know how to end the query:
var list =
from c in guideContext.Content,
dc in guideContext.ContentDetail
where c.id_content == contentID &&
select dc;
Any suggestion?
Thank you!