使用 ASP.NET MVC 2 和模型与 ADO.NET EntityCollections 绑定
我发现了一个关于如何使用模型绑定和列表的很棒的教程,MVC2 中的可编辑网格/列表绑定。它展示了如何创建包含 List
类型列表的对象。但是当我使用 ADO.NET 实体数据模型时,我无法做到这一点:
SomeEntityCollection[i]
因此我无法完成教程中所做的事情。
有办法解决这个问题吗?如果可能的话,也许让 ADO.NET 使用列表来代替?
I found a great tutorial on how to use Model Binding and List, Editable Grid / List Binding in MVC2. It shows how to create objects containing lists of type List<T>
. But when I use the ADO.NET entity data model I cannot make the this:
SomeEntityCollection[i]
And thereby I can not make what is done in the tutorial.
Is there a way to work around this? Maybe make the ADO.NET use lists instead, if that's possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现从 ADO.NET 映射到模型的最佳方法是使用 AutoMapper。这是一种形式化结构之间映射的非常优雅的方式。
从他们的网站:
The best way I have found to map from ADO.NET to models is to use AutoMapper. It's a very elegant way to formalize mapping between structures.
From their site: