在 MVC3 中使用相关 ID 填充表单中的选择框
我有一个非常简单的数据结构,有两个模型。第一个包含 UserName、UserQuestion 和 userLocationID,另一个包含 LocationName 和 LocationID,第一个表中的 locationID 与第二个表中的 LocationName 相关。但是我没有指定任何关系。我已经使用 这里。
我想创建一个表单,其中有两个文本输入供用户输入其姓名和问题,以及一个填充了第二个表中所有 locationNames 的选择框。然而,我似乎无法创建允许我这样做的模型。我需要制作一个单独的 ViewModel 吗?
有谁知道一个简单的教程可以解释如何做到这一点?
我对 MVC 和 .net 框架还很陌生。 。我查看了 这个答案但我似乎无法修改它以满足我的需要。所以,如果我要求一些非常基本的东西,我很抱歉。
I have a very simple data structure with two models. The first containing UserName, UserQuestion and userLocationID and another with LocationName and LocationID, the locationID in the first table is related to the LocationName the second table. However I've not specified any relationship. I've set up the data structure using the code first method in used here .
I would like to create a form which has two text inputs for a user to enter their name and question and a select box that is populated with all the locationNames from the second table. However I can't seem to create the model that allows me to do so. Do I need to make a separate ViewModel?
Does anyone know of a simple tutorial that will explain how to do this?
I'm quite new at MVC, and the dot net framework. . And I've had a look at this answer but I can't seem to modify it to fit my needs. So Apologies if I'm asking for something really basic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以在一个控制器、一个视图和三个 C# 类中给出一个示例。要使用此代码,请在 Visual Studio 中创建一个空的 MVC2 项目,并添加对 Entity Framework dll 版本 4.1 的引用。如果您需要有关将这些文件放在哪里的帮助,我建议 Steve Sanderson 的 MVC2 书。
存储库
控制器\HomeContoller.cs:
Views\Home\Index.aspx
I can give an example in one controller, one view and three C# classes. To use this code, create an empty MVC2 project in visual studio and add a reference to Entity Framework dll version 4.1. If you need help as to where to put these files I recommend Steve Sanderson's MVC2 book.
Repository
Controllers\HomeContoller.cs:
Views\Home\Index.aspx