我在我的项目中使用 Linq。
我想要所有来自 viewTeachers 的教师,其中 Mailcode 不等于 20。
我的代码是
var startWithFullName = from v in Db.viewTeachers
where v.FullName.StartsWith(prefix) && !v.MailCode.Equals(20)
orderby v.FullName
select new { v.ID, v.FullName };
foreach (var teacher in startWithFullName)
{
teacherTable.Rows.Add(teacher.FullName, teacher.ID);
}
我已经写了
!v.MailCode.Equals(20)
但不确定它是否正确。
谁能告诉我该怎么做?