命名空间重构MVC WebAPI后的两个路由

时间:2013-05-28 07:53:36

标签: c# asp.net-mvc asp.net-web-api

我为我的整个项目重命名了我的命名空间。一切仍然正常,但我的WebAPI现在为我的控制器找到两条路线。

Multiple types were found that match the controller named 'department'.
This can happen if the route that services this request ('api/{controller}/{id}') found multiple controllers defined with the same name but differing namespaces, which is not supported.

The request for 'department' has found the following matching controllers:
A***.P***.Benutzerverwaltung.Jo***MVC.Controllers.DepartmentController
A***.Benutzerverwaltung.API.Controllers.DepartmentController

所以我将第一个命名空间重命名为第二个命名空间,我到处搜索旧的命名空间,但没有找到任何内容。那么,我该怎么办?

感谢您的帮助。

1 个答案:

答案 0 :(得分:7)

  

那么,我该怎么办?

转到Web应用程序的bin文件夹并删除旧的程序集。 ASP.NET加载bin文件夹中存在的所有程序集。因此,如果您说您重命名了一些类库项目引用,则旧程序集仍然存在。