Two tables handle Student records: Students_Subjects and Students_Tests. The tables are in an m to n relationship. With the sql below we list the Students for Subject 44 that have taken the test. (admittedly there are easier ways to get to the same result).
Here is a SQL Query I want to convert
SELECT *
FROM Students_Subjects AS s
LEFT OUTER JOIN Students_Tests AS r
ON s.Stud_National_Id = r.Stud_National_Id
AND s.Subject_Id = r.Subject_Id
WHERE s.Subject_Id = 44
How can we do this with a Linq Expression?