使用 MVC3 创建控制器
我正在尝试使用 MVC 获取 UI。我目前正在与 MVC3 作斗争。似乎没有太多文档。
这就是我的想法。我相信我需要为每个查询创建存储过程。我正在为模型创建 LINQ to SQL。我正在尝试弄清楚如何创建控制器。关于如何将数据输入到存储过程并将结果返回到视图有什么建议吗?默认控制器类似乎没有做任何事情
我这样做对吗?或者 MVC2/MVC1 是更简单的方法?
我是 .NET 上的 MVC 新手。提前致谢。
I'm trying to get a UI using MVC. I'm currently battling with MVC3. There does’nt seem to be much documentation.
Here’s what I’m thinking. I believe I need to create stored procs for each query. I’m creating the the LINQ to SQL for the model. I’m trying to figure out how to create the cotroller. Any suggestion on how to input data to the stored proc and return results to the view? The default controller classes dont seem to do anything
Am I doing this right? Or MVC2/MVC1 the easier way to go?
I'm new to MVC on .NET. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有大量文档,如果您查找...另外,http://www.asp.net/mvc 是一个很好的起点。
看起来您真正需要的文档是 LINQ-to-SQL,而不是 MVC,它位于:http://msdn.microsoft.com/en-us/library/bb425822.aspx
这里还有一个很棒的 ScottGu 教程:http://weblogs.asp.net/scottgu/archive/2007/05/19/ using-linq-to-sql-part-1.aspx
整个系列可在此处获取,包括 PDF 下载:http://scottonwriting.net/sowblog/archive/2010/07/27/links- to-scott-guthrie-s-using-linq-to-sql-tutorials.aspx
There is plenty of documentation, if you look for it... Also, http://www.asp.net/mvc is a good place to start.
What it seems like you really need documentation for is LINQ-to-SQL, not MVC, which is here: http://msdn.microsoft.com/en-us/library/bb425822.aspx
There's also a great ScottGu tutorial here: http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx
The whole series is available here, including a PDF download: http://scottonwriting.net/sowblog/archive/2010/07/27/links-to-scott-guthrie-s-using-linq-to-sql-tutorials.aspx
你可以这样做,但这可能有点矫枉过正。我建议您观看此处的教程。第 5 段涵盖了有关使用实体框架进行数据访问的教程。尝试一下,如果您遇到一些具体问题,请毫不犹豫地提出问题,展示您已经尝试过的内容以及哪些内容对您不起作用。
You could do this but it might be an overkill. I would recommend you watching the tutorials here. Paragraph 5. covers tutorials about using Entity Framework for data access. Try them out and if you encounter some specific issues don't hesitate to ask a question by showing what you have tried and what didn't work for you.
如果您使用 Linq to SQL,您根本不需要使用存储过程。
如果您想了解有关 MVC 的更多信息,请尝试执行 NerdDinner 示例。
If you're using Linq to SQL, you don't need to use Stored Procs at all.
If you want more information on MVC generally, try doing the NerdDinner example.