您的位置:首页 > 博客中心 > 数据库 >

linq to ef(相当于sql中in的用法)查询语句

时间:2022-03-13 22:50

select * from DoctorInfo doctor
where doctor.HosDepartId in
(select Id from HospitalDepartment hd
where hd.DepartmentId=5)


var a=from d in _entity.HospitalDepartment
where d.DepartmentId==5
select d;

List<int> lst=new List<int>();
foreach(var b in a)
{
lst.add(b);
}

var doc=from c in _entity.DoctorInfo
where lst.contains(c.HospitalId)
select c;

linq to ef(相当于sql中in的用法)查询语句,布布扣,bubuko.com

热门排行

今日推荐

热门手游