我进行了一些搜索,但没有找到这个问题的可用答案。
好的,我的MVC 3架构是这样的:
- Project.EDM (contains only the entity framework edmx file and its .tt and .cs entity classes)
- Project.DAL (contains IXxxRepositiory and XxxRepository where CRUD is performed on the entity classes)
- Project.Web (the MVC3 project. Controllers transfer data from ViewModels into entity models and call the CRUD functions in the DAL repositories.)
WebApi
中的MVC4
看起来很吸引人,因为我们可以从其他应用程序调用CRUD操作。我们都喜欢这个想法。
但我发现的现有示例在ApiController
下的MVC4项目中有CRUD操作。我习惯将这些操作放入一个单独的DAL项目中。推荐的选择是什么?我们还能有一个单独的DAL课吗?您如何设计专家架构?
感谢您提供所有有用的建议。
答案 0 :(得分:7)
我的工作是:
因此,UI和API都将拥有一个或多个服务,而这些服务又具有一个或多个存储库对象。
大多数示例直接从ApiController查询数据库的唯一原因可能是因为简单。