更新数据库MVC 5 EF中的多个记录

时间:2016-12-08 15:55:47

标签: c# asp.net-mvc entity-framework asp.net-mvc-5 crud

晚上好, 现在我将描述我的情况: 这是我的模型:

[Table("Items")]
public class Item
{
    [Key]
    public string Id { get; set; }
    public DateTime Generated { get; set; }
    public string Content { get; set; }
    public string UrlSeo { get; set; }
    public bool IsActive { get; set; }
    public int Quantity { get; set; }
    public decimal Price { get; set; }
}

我正在对数据库记录实施CRUD操作,但我需要再实施一项操作,我需要在一个操作中更新所选记录中的 UrlSeo 属性。 所以这是我的观点:

@model IEnumerable<CheckBoxes.Models.Item>
@{
ViewBag.Title = "Items";
}
<dv class="page-header">
<h3>Items</h3>
</dv>
<p>
@Html.ActionLink("Create New", "Create")
</p>
@using (Html.BeginForm("ChangeUrl", "Items", FormMethod.Post))
{
<div class="row">
    <div class="form-group-sm">
        <div class="col-md-4">
            @Html.TextBox("urlSeo", null, new { @class = "form-control" })
        </div>
        <div class="col-md-offset-2 col-md-4">
            <input type="submit" value="Save" class="btn btn-default" />
        </div>
    </div>
    <p>

    </p>
</div>
<table class="table">
    <tr>
        <th>
            <input type="checkbox" id="checkAll" />
        </th>
        <th>
            @Html.DisplayNameFor(model => model.Generated)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.Content)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.UrlSeo)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.IsActive)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.Quantity)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.Price)
        </th>
        <th></th>
    </tr>
    @foreach (var item in Model)
    {
        <tr>
            <th>
                <input type="checkbox" class="checkBox" value="@item.Id" />
            </th>
            <td>
                @Html.DisplayFor(modelItem => item.Generated)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Content)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.UrlSeo)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.IsActive)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Quantity)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Price)
            </td>
            <td>
                @Html.ActionLink("Edit", "Edit", new { id = item.Id }) |
                @Html.ActionLink("Details", "Details", new { id = item.Id }) |
                @Html.ActionLink("Delete", "Delete", new { id = item.Id })
            </td>
        </tr>
    }

</table>
}
@section Scripts{
@Scripts.Render("~/bundles/toastr")
<!--მასიური  წაშლა-->
<script>
    $(document).ready(function () {

        $("#checkAll").click(function () {
            $(".checkBox").prop('checked',
                $(this).prop('checked'));
        });
    });
</script>
}

最后我的控制器:

[HttpPost]
    public async Task<ActionResult> ChangeUrl(string urlSeo, string[] id)
    {
        foreach (var itemId in id)
        {
            Item item = await db.Items.FindAsync(itemId);
            item.UrlSeo = urlSeo;
            db.Entry(item).State = EntityState.Modified;
            db.Entry(item).Property(x => x.Generated).IsModified = false;
            db.Entry(item).Property(x => x.Content).IsModified = false;
            db.Entry(item).Property(x => x.IsActive).IsModified = false;
            db.Entry(item).Property(x => x.Price).IsModified = false;
            db.Entry(item).Property(x => x.Quantity).IsModified = false;
        }
        await db.SaveChangesAsync();
        return Json(new { success = true });
    }

现在提问 如何将所有选中的项目传递给控制器​​并从字段输入。 我回家有人会帮助我。

1 个答案:

答案 0 :(得分:0)

这里的问题在哪里必须给复选框命名,女巫等于控制器的一部分。

@foreach (var item in Model)
{
    <tr>
        <th>
            <input type="checkbox" class="checkBox" value="@item.Id" name="id" />
        </th>

一切都很好,是的还有一件事,更好用:

return RedirectToAction("Index");

所以这是有效的解决方案。