摘要: List articleList = articleRepository.GetAllArticle(); List userList = usersRepository.GetAllUsers(); //用户表左连接文章表 var usersLeftJoin = (from u in userList join a in articleList on u.Id equals a.Author into... 阅读全文
posted @ 2013-11-05 10:19 黑 瞳 阅读(569) 评论(0) 推荐(0) 编辑