这个错误在 asp.net-mvc 中说明了什么?

发布于 2024-08-30 19:29:09 字数 665 浏览 8 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

王权女流氓 2024-09-06 19:29:09

您收到错误是因为您没有将 id 传递给控制器​​方法。

您基本上有两个选择:

  1. 始终将有效的 id 传递给控制器​​方法,或者
  2. 使用 int?参数,并在调用 GetMaterial(id) 之前合并 null。

无论如何,您应该检查 material 是否为空值。所以:

public ActionResult Details(int? id) 
{ 
    Material material = consRepository.GetMaterial((int)(id ?? 0)); 
    if (id == null)
        return View("NotFound");
    return View(); 
}

或者(假设你总是传递一个正确的 id):

public ActionResult Details(int id) 
{ 
    Material material = consRepository.GetMaterial(id); 
    if (id == null)
        return View("NotFound");
    return View(); 
}

要将有效的 id 传递给控制器​​方法,你需要一个如下所示的路由:

 routes.MapRoute(
     "Default",
     "{controller}/{action}/{id}",
     new { controller = "Home", action = "Index", id="" }
 );

以及一个如下所示的 URL:

http://MySite.com/MyController/GetMaterial/6  <-- id

You're getting the error because you're not passing an id to the controller method.

You basically have two options:

  1. Always pass a valid id to the controller method, or
  2. Use an int? parameter, and coalesce the null before calling GetMaterial(id).

Regardless, you should check for a null value for material. So:

public ActionResult Details(int? id) 
{ 
    Material material = consRepository.GetMaterial((int)(id ?? 0)); 
    if (id == null)
        return View("NotFound");
    return View(); 
}

Or (assuming you always pass a proper id):

public ActionResult Details(int id) 
{ 
    Material material = consRepository.GetMaterial(id); 
    if (id == null)
        return View("NotFound");
    return View(); 
}

To pass a valid id to the controller method, you need a route that looks something like this:

 routes.MapRoute(
     "Default",
     "{controller}/{action}/{id}",
     new { controller = "Home", action = "Index", id="" }
 );

And an URL that looks like this:

http://MySite.com/MyController/GetMaterial/6  <-- id
神爱温柔 2024-09-06 19:29:09

这意味着 param (int id) 传递了一个 null,使用 (int? id)

(在控制器中)

It means the param (int id) was passed a null, use (int? id)

(in the controller)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文