2010-01-17 131 views

回答

0

基本上所有你需要做的是根據你的動態參數爲IQueryable添加條件。例如:

string productName = Request.Querystring[ProductName]; 

IQueryable<Product> productQuery = Product.All(); 

if(productName != null) 
{ 
    productQuery = productQuery.Where(product => product.Name == productName); 
} 

IList<Product> filteredList = productQuery.ToList(); 
+0

非常感謝,我會盡量按照您的提示 – maung 2010-01-17 16:13:11