如何使用实体框架启动应用程序存储库 +工作单位?
我计划使用实体框架+存储库+工作单元编写我的第一个应用程序。
我正在寻找一个很好的例子,我可以在哪里应用这些模式。我仍在了解这个场景。您能给我提供一个网站或教程来解释如何实现它们吗?
我在 MSDN 上看到了几篇文章,其中发布了您可以使用 POCO,另一篇文章则使用 T4 模板。我想利用它们就是利用时间。
我不得不说,我是这个话题的新手,如果这个问题很愚蠢,我很抱歉。 提前致谢。
I plan to write my first application using Entity Framework + Repository + Unit of Work.
I'm looking for a good example where can I apply these patterns. I'm still learning of this scenario. Can you provide me a website or tutorial where explain how to implement them?
I've seen several articles from MSDN which publish that you can use POCO, another uses T4 templates. I guess utilizing them is take advantage of the time.
I've got to say, I'm newbie of this topic, and sorry if the question is stupid.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 Steven Sanderson 的广泛帖子系列的第一部分开始,来自 http://blog.stevensanderson.com/2011/01/13/scaffold-your-aspnet-mvc-3-project-with-the-mvcscaffolding-package/
Steve 演示了 MVCScaffolding与模型类一起提供的脚手架控制器和视图。
非常有用的系列。我在我的第一个 MVC3 项目中广泛使用了它。
他还演示了存储库模式。
感谢史蒂文·桑德森(Steven Sanderson)创作了如此精彩的一系列帖子。
You can start with first part of an extensive post series by Steven Sanderson from http://blog.stevensanderson.com/2011/01/13/scaffold-your-aspnet-mvc-3-project-with-the-mvcscaffolding-package/
Steve demonstrates MVCScaffolding to scaffold controllers and views when provided with model classes.
Very useful series. I used it in my first MVC3 project extensively.
He also demonstrate repository pattern.
Credit goes to Steven Sanderson for creating such a wonderful series of posts.