asp.net mvc3,为什么我们使用存储库模式时需要服务层

发布于 2024-12-04 08:23:02 字数 92 浏览 1 评论 0原文

我正在观看“店面入门套件”,它使用带有服务层的存储库模式。在视频中,他并没有真正解释为什么他使用服务层。看来这些只是额外的。

使用服务层有什么优点和缺点?

I was watching "storefront starter kit", its using repository pattern with service layer. In the video, he didnt really explain why he's using service layer. Seems like those are just extra.

what are pros and cons using service layer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁对谁错谁最难过 2024-12-11 08:23:03

对于大多数 ASP.NET MVC 应用程序来说,控制器直接寻址存储库(通过接口)是完全合理且更可取的。我只会在您需要时添加服务层,例如当其他应用程序与您的应用程序交互时。在我看来,你应该避免不必要的抽象层。

For most asp.net mvc apps it is perfectly reasonable and preferable for your controllers to directly address the repository (via an interface). I would only add a service layer when you need to, for example when other apps are interfacing with your application. In my opinion you should avoid unnecessary abstraction layers.

意中人 2024-12-11 08:23:02

存储库是您的数据层......它的职责是获取和保存数据。

服务层是您的业务层......它的职责是保存您的所有业务逻辑。

Repository is your Data Layer ... it's responsibility is to fetch and save data.

The Service Layer is your Business Layer ... it's responsibility is to hold all your business logic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文