码迷,mamicode.com
首页 > 其他好文 > 详细

Linq 左右连接

时间:2014-08-16 17:07:50      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:ar   new   sql   ef   on   sp   text   rom   

---左连接  (转载)

DataClasses1DataContext db = new DataClasses1DataContext();
var leftJoinSql = from student in db.Student
join book in db.Book on student.ID equals book.StudentID into temp
from tt in temp.DefaultIfEmpty()
select new
{
sname= student.Name,
bname = tt==null?"":tt.Name//这里主要第二个集合有可能为空。需要判断
};

 

---右连接

DataClasses1DataContext db=new DataClasses1DataContext();
var rightJoinSql = from book in db.Book
join stu in db.Student on book.StudentID equals stu.ID into joinTemp
from tmp in joinTemp.DefaultIfEmpty()
select new {
sname=tmp==null?"":tmp.Name,
bname=book.Name

};

Linq 左右连接,布布扣,bubuko.com

Linq 左右连接

标签:ar   new   sql   ef   on   sp   text   rom   

原文地址:http://www.cnblogs.com/yanhu/p/3916545.html

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