这个错误在 asp.net-mvc 中说明了什么?
我在 asp.net mvc 中有一个存储库类,它有这个,
public Material GetMaterial(int id)
{
return db.Materials.SingleOrDefault(m => m.Mat_id == id);
}
我的控制器有这个详细操作结果,
ConstructionRepository consRepository = new ConstructionRepository();
public ActionResult Details(int id)
{
Material material = consRepository.GetMaterial(id);
return View();
}
但是为什么我收到这个错误,
参数字典包含不可为空类型的参数“id”的空条目“CrMVC.Controllers.MaterialsController”中的“System.Web.Mvc.ActionResult Details(Int32)”方法的“System.Int32”。要使参数可选,其类型应该是引用类型或 Nullable 类型。 参数名称:parameters
任何建议...
I have repository class in asp.net mvc which has this,
public Material GetMaterial(int id)
{
return db.Materials.SingleOrDefault(m => m.Mat_id == id);
}
And my controller has this for details action result,
ConstructionRepository consRepository = new ConstructionRepository();
public ActionResult Details(int id)
{
Material material = consRepository.GetMaterial(id);
return View();
}
But why i get this error,
The parameters dictionary contains a null entry for parameter 'id' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Details(Int32)' in 'CrMVC.Controllers.MaterialsController'. To make a parameter optional its type should be either a reference type or a Nullable type.
Parameter name: parameters
Any suggestion...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您收到错误是因为您没有将 id 传递给控制器方法。
您基本上有两个选择:
无论如何,您应该检查
material
是否为空值。所以:或者(假设你总是传递一个正确的 id):
要将有效的 id 传递给控制器方法,你需要一个如下所示的路由:
以及一个如下所示的 URL:
You're getting the error because you're not passing an id to the controller method.
You basically have two options:
Regardless, you should check for a null value for
material
. So:Or (assuming you always pass a proper id):
To pass a valid id to the controller method, you need a route that looks something like this:
And an URL that looks like this:
这意味着 param (int id) 传递了一个 null,使用 (int? id)
(在控制器中)
It means the param (int id) was passed a null, use (int? id)
(in the controller)