我有一个值列表
var CurPareID = _context.PareSubgroups.Where(p => p.Subgroup_Id == StudentSubgrId).Select(p => p.Pare_Id).ToList();
这是一个请求
ViewBag.monday_item = _context.Schedules
.Include(p => p.PairTime)
.Include(p => p.Semester)
.Include(p => p.Subject)
.Include(p => p.Teacher)
.Where(p => p.Teacher_Id ==TeacherId);
我想使用 Where 来检查上下文中是否有列表中的值,但它只针对一个值。如何检查我的上下文是否包含所有这些值。是否有任何类似于 C# 的 Sql 中的 ON。
应该刚用
.Contains