摘要:
var list = from tab in context.Tbl_Section where (new string[] { "d001", "d002" }).Contains(tab.DepartmentID) && !(new string[] { "S0142", "S0162" }).Contains(tab.SectionID) && tab.UFlag == true orderby tab.DepartmentID ascending select tab;第一个 阅读全文