尝试运行视图时,我得到NullReferenceException
。
我没有看到导致此问题的代码。
有人可以解释这个问题吗?谢谢
这是Model类:
public class Catalogus: ICatalogus
{
private readonly DbSet<Materiaal> materialen;
private IEnumerable<Materiaal> materialenTest;
private Firma firma;
public Catalogus()
{
firma = new Firma("hh", "lol@gmail.com");
materialenTest = new Materiaal[] { new Materiaal(5, 0, "1", "test", "test", "ts", firma, "wereldbol", "wereldbol", "lol", 0, true) };
}
public IEnumerable<Materiaal> VindAlleMaterialen()
{
return materialenTest.OrderBy(m => m.Naam);
}
public IEnumerable<Materiaal> ZoekOpTrefwoord(string trefwoord)
{
IEnumerable<Materiaal> gefilterdMaterialen = materialenTest.Where(mat => mat.GetType().GetProperty("naam").GetValue(this).Equals(trefwoord));
return gefilterdMaterialen;
}
}
具有NullRef异常的控制器:
此行导致问题。
IEnumerable materialen = catalogus.VindAlleMaterialen()。OrderBy(m =&gt; m.Naam).ToList();
public class CatalogusController : Controller
{
private ICatalogus catalogus;
public CatalogusController() { }
public CatalogusController(ICatalogus catalogus)
{
this.catalogus = catalogus;
}
public ActionResult Index()
{
IEnumerable<Materiaal> materialen = catalogus.VindAlleMaterialen().OrderBy(m => m.Naam).ToList();
return View(materialen);
}
}
答案 0 :(得分:7)
您的默认构造函数public CatalogusController
不会创建catalogus
实例。然后执行catalogus.VindAlleMaterialen().OrderBy(m => m.Naam).ToList();
时会导致NullReferenceException,因为catalogus
为空。
如果你正在调用重载的构造函数(可能不是这种情况),你应该验证传入的参数。
public CatalogusController(ICatalogus catalogus)
{
if(catalogus == null) throw new ArgumentNullException("catalogus");
this.catalogus = catalogus;
}
答案 1 :(得分:1)
看起来有人可以在不传入ICatalogus对象的情况下构建CatalogusController。当有人调用controller.Index()
:
// Create a controller object using the default constructor
CatalogusController controller = new CatalogusController();
// this causes a NullReferenceException because controller.catalogus is null
controller.Index();