码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2014-08-17 18:21:12      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:os   for   ar   art   new   sql   ad   ef   

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

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

标签:os   for   ar   art   new   sql   ad   ef   

原文地址:http://www.cnblogs.com/love828/p/3918031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!