I have three tables Corevalue
, SubjectType
and Question
.
I want to select CoreValue.Sname
, SubjectType.Cname
and Question.QuestionText
, I know how it works with SQL but not LINQ any help would be appreciated.
Somethng like this in SQL:
SELECT
CoreValue.Cname,
Question.Questiontext,
SubjectType.Sname
FROM
Corevalue
JOIN Question
ON Corevalue.CID = question.QID
JOIN SubjecType
ON Question.QID = SubjectType.SID;
I quess this one is right, but I want to LINQ :/
Thanks on Advance
Best Regards!