1
我想用亞音速3.0構建動態搜索查詢。 誰能幫幫我? 任何樣品請。亞音速3.0動態搜索查詢
我想用亞音速3.0構建動態搜索查詢。 誰能幫幫我? 任何樣品請。亞音速3.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();
非常感謝,我會盡量按照您的提示 – maung 2010-01-17 16:13:11