3
我想在對象(國家/地區)不爲空時返回視圖。但我得到的錯誤「並非所有的代碼路徑返回一個值」當MVC中返回視圖時,「不是所有的代碼路徑都返回一個值」
我的代碼看起來像這樣
public ActionResult Show(int id)
{
if (id != null)
{
var CountryId = new SqlParameter("@CountryId", id);
Country country = MyRepository.Get<Country>("Select * from country where [email protected]", CountryId);
if (country != null)
{
return View(country);
}
}
}