ASP.Net MVC 3 中具有多个存储库的控制器
我有一个控制器,它控制一个标准搜索页面的视图。该视图的顶部有一个搜索条件部分,底部有一个网格部分,用于显示搜索结果。 我的控制器中有两个存储库,一个用于存储常见内容,例如与条件部分关联的组合框值。另一个存储库用于存储网格数据。 我使用两个存储库创建一个视图模型,并将其传递到我的视图(作为我的模型),这使得我的模型非常巨大。有更好的方法吗?
I have a controller which controls a view which is a criteria search page. The view has a search criteria section at the top and a grid section at the bottom which will display the results from the search.
I have two repositories in my controller, one for Common stuff like combobox values which is associated with Criteria section. The other repository is for the grid data.
I create a viewmodel with both repositories and pass it to my view (as my model) which makes my Model really huge. Is there any better way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好使用 工作单元和存储库
It is better to use Unit of Work and Repository