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

[转]ef获取某个表中的部分字段值

时间:2014-08-26 22:49:56      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:des   blog   使用   div   log   sp   new   ef   c   

我有个新闻表

id,title,body,createtime,author,click

使用ef4.1 仅仅读取 id,title,createtime 并显示在页面上。

 

 

 public static List<NewInfo> GetHotNews()
        {
            List<NewInfo> list;
            list = (from n in db.NewInfoes
                    where n.IsTop == 1
                    orderby n.PublishTime descending
                    select new
                    {
                        Title = n.Title,
                        NewID = n.NewID,
                        PublishTime = n.PublishTime
                    }).ToList();
            return list;
        }
改为

 

 

public static List<NewInfo> GetHotNews()
        {
            List<NewInfo> list;
            list = (from n in db.NewInfoes
                    where n.IsTop == 1
                    orderby n.PublishTime descending
                   
       .Select(n => new NewInfo
                    {
                        Title = n.Title,
                        NewID = n.NewID,
                        PublishTime = n.PublishTime
                    });
            return list;
        }

 

[转]ef获取某个表中的部分字段值

标签:des   blog   使用   div   log   sp   new   ef   c   

原文地址:http://www.cnblogs.com/cyy2758/p/3938308.html

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