說我控制器像結果集過濾
IList <post> p =db.posts.Include("user").ToList();
if (Request.Form["searchString"] != null)
{
if ((p!=null) && (p.Any()))
{
p =(p.Where(a=>a.area==Request
.Form["searchString"]).Tolist();
}
}
if (Request.Form["searchString2"] != null)
{
if ((p!=null) && (p.Any()))
{
p=(p.Where(a=>a.city==Request
.Form["searchString2"]).Tolist();
}
}
return View(p);
一個動作在這裏我第一次得到一個結果集(P)。那麼我想通過一些標準過濾p,它給出了條件塊內ToList()的錯誤。錯誤:有在後
思路:
或?你的要求是什麼?你有沒有試過你寫的代碼?它有什麼問題? –
到目前爲止,我可以看到你不需要列表。 IEnumerable的學生將會很好。 – Grunf
請再次查看我的問題...... –