标签: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;
}
标签:io ar on cti amp tt type return rom
原文地址:http://www.cnblogs.com/ravioli/p/4145202.html