I have data table call issue_line_person (above picture). I want to retrieve set of rows which are equal to specific line_id and issue_id, with ascending order according to the levelOfResponsibility.
This is the SQL query for that.
SELECT *
FROM issue_line_person
WHERE line_id = " + line_line_id + " AND issue_id = " + issueId + "
ORDER BY levelOfResponsibility
How to do that using Entity Framework and a Linq method?
