从 MVC2 的实体框架生成模型类
我正在关注 Steven Sanderson 的“Pro ASP.Net MVC2 Framewok”,它使用 Linq2SQL。他使用抽象工厂方法来支持单元测试和模拟,并在单独的项目中编写模型类来促进这一点。
我使用 Linq to Entity Framework 而不是 Linq2SQL,并且我已经从现有数据库在 EF 中构建了实体模型。 (我对这一切都很陌生)。
我不太明白我是否正确,但我相信我仍然应该生成在 EF 之外定义的模型类(EF 和表示之间的层?),即使我可以直接将 Linq2EF 查询结果实体传递为MVC 的模型(安全性?关注点分离?)。
因此,我希望 EF 为我存根模型类,而不是从头开始手动编码它们。有没有一种简单的方法可以做到这一点,或者我是否误解了我需要做的事情?
I am following Steven Sanderson's "Pro ASP.Net MVC2 Framewok", which uses Linq2SQL. He uses abstract factory approach to support unit testing and mocking, and writes model classes in a separate project to facilitate this.
I am using Linq to Entity Framework instead of Linq2SQL, and I have built an entity model in EF from an existing database. (I am new to all of this).
I don't quite understand if I'm getting this right, but I beleive I should still generate model classes defined outside of EF (a layer between EF and presentation?), even though I could just pass Linq2EF query results entities directly in as MVC's models (security? separation of concerns?).
So I'd like EF to stub the model classes for me instead of hand-coding them all from scratch. Is there an easy way to do this, or am I mis-interpreting what I need to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个 博客 关于这个主题的丰富资源。
如果您要使用 ViewModel,我强烈推荐使用 souceforge 的 AutoMapper
Take a look at this blog great resource on this subject.
If you are going to use ViewModels I highly recomend using AutoMapper from souceforge