-2
我需要將該代碼轉換爲ADO.net實體框架代碼,因此我需要一些幫助,因爲我是mvc asp.net的新手。Sql代碼轉換爲實體框架
Thnaks
SELECT A.cid, A.cname,
B.sid, B.lname,B.fname,
C.section,c.crn
FROM courses A, students B, sections C, Registration D
WHERE A.cid = C.cid AND
B.sid = D.sid AND
c.crn = d.crn AND
c.crn = 1003 ;
ORDER BY B.lname,B.fname ASC;
你需要哪些幫助?如果你不告訴你迄今爲止做了什麼,我們不知道從哪裏開始。比如說你有背景嗎? –
'private EmpiteHrSystemContextnew db = new EmpiteHrSystemContextnew(); // // GET:/僱員/ 公共的ActionResult指數() { 變種tblemployees = db.tblEmployees.Include(T => t.tblDepartment); //.GroupBy(x => x.FirstName) // .Select(y => new tblEmployee // { //})。ToList()。OrderBy(y => y.FirstName); return View(tblemployees.ToList()); }' – user2919288
這是我的索引行動的結果我需要返回查看與第一個名字在第一個名字,然後asc在姓氏請幫助 – user2919288