我創建一個基於ASP.NET Web API的應用程序,並按照以下教程: http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/action-results。
ApiController和IHttpActionResult
我試圖固有ApiController
類作爲教程DESCRIPT,也可以實現IHttpActionResult
接口,但是編譯器會抱怨,說他們的組件未能找到。
我的問題,如何添加程序集爲ApiController
和IHttpActionResult
?
更新1
我通過的NuGet添加Microsoft.AspNet.WebApi.Core
,它顯示了我的錯誤信息
錯誤是什麼意思?是否有任何依賴性錯誤?您可能想要使用特定版本的WebApi.Core。我使用5.2.3版本,因爲它與許多其他依賴關係一起玩。 – smoksnes
嘗試在您的啓動文件 – Eldho
中添加'public void ConfigureServices(IServiceCollection services) services.AddMvc();'這可能是有用的http://docs.asp.net/en/latest/tutorials/first-web-api。 html – Eldho