Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始学习 asp.net webforms mvp,我有点困惑是否需要服务层,或者服务层中的所有内容都应该进入演示者。
不,MVP 模式或 MVC 模式严格来说是一种表示层模式。真正的服务层不应该存在于表示层中。
其主要原因之一是服务层应该能够支持多个表示层。假设您想为您的 ASP.NET MVP 应用程序使用的相同数据构建一个 WPF 前端,那么如果您在 ASP.NET MVP 应用程序内部有服务层逻辑,那么您的 WPF 应用程序将需要引用 Web应用。