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

linq查询结果指定列的两种方式

时间:2017-08-17 14:45:11      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:tle   any   gif   dmi   style   where   两种   span   方式   

方式一:

var results = from product in products
                orderby product.Price descending
                select new {
                    product.Name,
                    product.Price
                };

方式二:

products.Where(pro => pro.Price < 3M).Select(s => new { s.Name, s.Price });

查询结果转换到实体里:

方式一:

技术分享
var list = from q in _db.Page_AdPages
                       where q.IsDelete == "N"
                        orderby q.PageID
                        select new AdPages
                        {
                            PageID = q.PageID,
                            PageName = q.PageName,
                            Flag = (Int32)q.Flag
                        };
            return list.ToList<AdPages>();
技术分享

方式二:

技术分享
public List<Admin_CPcompany> GetCpList()
        {
            var result = _db.Admin_CPcompany.Select(s => new Admin_CPcompany { ID=s.ID,CPname=s.CPname,AddTime=s.AddTime,IsDelete=s.IsDelete}).ToList();
            return result;
        }
技术分享

 

linq查询结果指定列的两种方式

标签:tle   any   gif   dmi   style   where   两种   span   方式   

原文地址:http://www.cnblogs.com/dehuachenyunfei/p/7380908.html

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