c# ado.net eftity framework 返回多表查询结果_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > c# ado.net eftity framework 返回多表查询结果

c# ado.net eftity framework 返回多表查询结果

 2015/2/4 23:39:10  王鹏飛  程序员俱乐部  我要评论(0)
  • 摘要:publicstaticIQueryableGetWeiXinTuWenList(){using(varModel=newModel.WeiXinEntities()){varList=(fromCinModel.MP_WeiXinSuCaiCategoryjoinTWinModel.MP_WeiXinTuWenonC.IdequalsTW.CategoryIdintortfromTWinrt.DefaultIfEmpty()whereC.WeiXinID==Common
  • 标签:.net C# Framework net 结果 多表查询

public static IQueryable GetWeiXinTuWenList()
{
using (var Model = new Model.WeiXinEntities())
{
var List = (from C in Model.MP_WeiXinSuCaiCategory
join TW in Model.MP_WeiXinTuWen on C.Id equals TW.CategoryId into rt
from TW in rt.DefaultIfEmpty()
where C.WeiXinID == Common.WeiXinID
select new { TW.Id, CategoryName = C.Name, TW.Title }).ToList();
return List.AsQueryable();
}
}

发表评论
用户名: 匿名