我習慣於C#和vb.net winforms,通常可以通過設置斷點並遍歷我的代碼來找到所需的所有錯誤。如何調試mvc4剃鬚刀視圖?
我想知道我做錯了什麼。
我把一個斷點位置:
public ActionResult Index(int id)
{
var cnty = from r in db.Clients
where r.ClientID == id
select r;
if (cnty != null) // breakpoint here
{
return View(cnty); // F11 jumps over this section of code returning me to the error page below.
}
return HttpNotFound();
}
又一次我不知道在哪裏,爲什麼它究竟是出錯了。我怎樣才能找出爲什麼或更好,但它拋出什麼錯誤?
我正在使用VS2012 mvc4 c#。
不是直接的答案,但'cnty'永遠不會'null'。它可能是_empty_,但不是'null'。 –