gpt4 book ai didi

c# - 删除 MVC 5 列表的问题

转载 作者:太空宇宙 更新时间:2023-11-03 10:24:51 24 4
gpt4 key购买 nike

最近离开 MVC 一段时间,回到一个旧项目,尝试重写我以前完成的代码,但在从列表中删除项目时出现问题,使用 EF 没问题,但我正在尝试不要使用 Entity Framework 来管理我的模型数据。在我乐意提交之前,我想将我的模型用作数据库。

我重写了问题以简化它而不是转储代码负载,当单击删除时我收到以下错误:

参数字典包含“Project.Views.requestedController”中方法“System.Web.Mvc.ActionResult RemoveRequested(Int32)”的不可为空类型“System.Int32”的参数“id”的空条目'.可选参数必须是引用类型、可空类型或声明为可选参数。参数名称:parameters

我认为 id 通常由 EF 处理,但我认为 [key] 会将其处理为自动递增 - 这可以排序吗?

希望这是有道理的。动态我不太关心,所以除非我必须,否则最好不要使用 jQuery/java 脚本。

代码:

局部 View

@model IEnumerable<Project.Models.Allocation>
@using (Html.BeginForm())
{
if (Model != null)
{
foreach (var ri in Model)
{
<div class="ui-grid-c ui-responsive">
<div class="ui-block-a">
<span>
@ri.one
</span>
</div>
<div class="ui-block-b">
<span>
@ri.two
</span>
</div>
<div class="ui-block-c">
<span>
@ri.three
</span>
</div>
<div class="ui-block-d">
<span>
@Html.ActionLink("Delete", "RemoveRequested", new { id = ri.id })
</span>
</div>
</div>
}
}

模型

public class Allocation
{
[Key]
public int? id { get; set; }
[Required]
public string one { get; set; }
[Required]
public string two { get; set; }
[Required]
public string three { get; set; }
}
public class Container
{
[key]
public int? id { get;set; }
[Required]
public List<Allocation> requested { get;set; }
}

Controller 操作方法

public ActionResult RemoveRequested(int id)
{
var newContainer = (Container)Session["containerSession"];
if(newAllocation.requested != null)
{
var del = newContainer.requested.Find(m => m.id == id);
newContainer.requested.Remove(del);
}
Session["containerSession"] = newContainer;
return RedirectToAction("Index");
}

最佳答案

我不会有可为 null 的键并添加 [DatabaseGenerated(DatabaseGeneratedOption.Identity)] 属性。

更改您的Allocation 类型,将其更改为:

public class Allocation
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int id { get; set; }
[Required]
public string one { get; set; }
[Required]
public string two { get; set; }
[Required]
public string three { get; set; }
}

现在这将匹配您的操作参数。但是,如果您的 key 为空,则您一定有其他问题,他们现在将使用默认值零。

另一种选择是更改您的操作以接受可空类型作为参数:

public ActionResult RemoveRequested(int? id)

请注意,我还会使用 HttpPost 来删除,而不是像您目前正在做的那样使用 HttpGet

关于c# - 删除 MVC 5 列表的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31983701/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com