我必须根据搜索条件在网格视图中绑定搜索结果。在我的数据库中,主存储 id 值是 10,12。当我从下拉列表中选择特定的主商店 id 即 10 时,需要在网格视图中显示与该主商店 id 对应的搜索结果。如何做到这一点?
public static List<SearchKeyWord> GetAllKeywords(string key,
string primaryStoreId, string keywordStatus, int keywordId,
string categoryName, string subCategoryName)
{
keys = db.SearchKeyWords.Where(c => c.KeyWord.Contains(key) &&
(c.PrimaryStoreID == primaryStoreId ||
c.PrimaryStoreID.Split(',').ToList().Contains(primaryStoreId)) &&
(string.IsNullOrEmpty(categoryName) || c.StoreCategoryMapping == categoryName) &&
(string.IsNullOrEmpty(subCategoryName) || c.StoreSubCategoryMapping ==
subCategoryName)).ToList();
}
已编辑!