在 asp.net MVC 中向表中插入多行

发布于 2024-10-21 08:46:04 字数 397 浏览 2 评论 0原文

您好,我有以下场景,

Table - Items
    id int (PK),
    name varchar(100)

Table - Category
    id int (PK),
    name varchar(100)

Table - Category_item
    category_id int (FK),
    item_id int (FK)

我正在使用 Asp.Net MVCEntitydatamodel。 在视图中,我有一个用于显示类别的下拉列表和一个用于显示项目的复选框。

当我选择类别和当前项目时,我想插入到表 - Category_item 中。 我该怎么做?如何将值从视图传递到控制器?

Hi I have a the following scenario

Table - Items
    id int (PK),
    name varchar(100)

Table - Category
    id int (PK),
    name varchar(100)

Table - Category_item
    category_id int (FK),
    item_id int (FK)

I'm using Asp.Net MVC and Entitydatamodel.
In the view I have a dropdown list to show the categories and a check boxes to display item.

I want to insert into the Table - Category_item when i select the category and curresponding items.
How can i do it? How can I pass the values from the view to the controller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青柠芒果 2024-10-28 08:46:04

答案是,这取决于情况。但一般情况是(RAZOR)

@Html.DropDownList(类别,
db.Categories.Select(cat => 新
选择列表项()
{文本 = 猫.名称,
值 = 猫.Id,
已选择=(假/真)
}).ToList());

您可以使用Html.DropDownListFor,然后“保存”操作将已被绑定到正确的值。 'db' 是模型上下文。

The anwser is that it depends. But the general case is (RAZOR)

@Html.DropDownList(category,
db.Categories.Select(cat => new
SelectListItem()
{Text = cat.Name,
Value = cat.Id,
Selected = (false/true)
}).ToList());

You can use Html.DropDownListFor and then the Save action will already be bounded with correct value. 'db' is the model context.

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