日斋
日新月异
摘要: var q = (from ar in db.Articles join c in db.Categories on ar.ParentId equals c.Id join sc in db.Categories on ar.SubId equals sc.Id into scate from sc in scate.DefaultIfEmpty() where ar.IsPrivate == false orderby ar.CreateTime descending __select new { article = ar, pcate = c, scate = sc }).Take(3) 阅读全文
posted @ 2011-08-25 16:39 李承隆 阅读(465) 评论(0) 推荐(0) 编辑