0

我见过一个应用程序,它有多个 Asp.Net web 应用程序项目。看起来开发应用程序的人不知道他们可以拥有一个 Asp.Net Web 应用程序项目和其他项目,如 BusinessLogic、DataLogic 可以创建为 C# 类库项目。将所有层都作为 Web 应用程序项目意味着什么?会不会有性能问题?每个 Web 应用程序都有自己的 AppDomain 吗?

4

1 回答 1

0

Multiple projects in VS shouldn't affect performance in the application. When you build your project your references in your main website will "retrieve" the latest copy of the compiled projects. If anything this could actually improve performance on the target server since these libraries will not need to be compiled again.

于 2012-04-17T15:46:52.373 回答