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

Linq查询

时间:2014-12-04 23:08:34      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:io   ar   on   cti   amp   tt   type   return   rom   

public IOrderedQueryable<ProductDetail> GetProductList(string productGroupName, string productTypeName, Dictionary<string,List<string>> filterDictionary)
{
    var q = from c in db.ProductDetail
            where c.ProductGroupName == productGroupName && c.ProductTypeName == productTypeName
            // insert dynamic filter here
            orderby c.ProductTypeName
            select c;
    return q;
}

Linq查询

标签:io   ar   on   cti   amp   tt   type   return   rom   

原文地址:http://www.cnblogs.com/ravioli/p/4145202.html

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