标签: linq sql-order-by
这是我的代码:
var students = db.Students.Where(p => p.active == true).OrderBy(z => z.lastname) return View(students)
在视图中,我遍历了学生模型。第一行是“fullname”。但是这总是用名字的alpha显示,而不是最后一个。是什么造成的?
答案 0 :(得分:0)