如果我想使用WebAPI作为服务连接到不同服务器上的多个数据库并检索我的MVC应用程序将使用的数据,那么最好的方法是什么?
我不希望在与我的MVC项目相同的项目中安装ApiController,因此我需要添加一个新的WebApi项目(删除所有除控制器和模板添加的东西都有一个干净的项目)我的MVC应用程序将参考?
以下是我以前了解WebAPI的教程/博客文章列表:
ASP.NET Web API - 具有可下载示例代码的Screencast系列 http://weblogs.asp.net/jgalloway/archive/2012/03/16/asp-net-web-api-screencast-series-with-downloadable-sample-code-part-1.aspx
使用HttpClient使用ASP.NET Web API服务
http://debugmode.net/2012/03/03/creating-first-http-service-using-asp-net-web-api-part1-of-many/ http://debugmode.net/2012/03/07/consuming-asp-net-web-api-service-using-httpclient-part2-of-many/
使用ASP.NET Web API和MVC4的CRUD操作
http://www.dotnetglobe.com/2012/03/crud-operation-using-aspnet-web-api-in.html http://www.dotnetglobe.com/2012/03/crud-operation-using-aspnet-web-api-in_28.html
为ASP.Net Web API oData服务创建.Net可查询客户端 http://blog.petegoo.com/index.php/2012/03/11/creating-a-net-queryable-client-for-asp-net-web-api-odata-services/
使用HttpClient来使用ASP.NET Web API REST服务 http://www.johnnycode.com/blog/2012/02/23/consuming-your-own-asp-net-web-api-rest-service/
使用ASP.NET Web API的客户端支持 https://msmvps.com/blogs/theproblemsolver/archive/2012/03/13/client-side-support-with-the-asp-net-web-api.aspx
创建和使用ASP.Net Web API REST服务 - MVC4 http://www.askamoeba.com/Opensource/Opensourcedetail/144/Create-and-Consume-ASP-Net-Web-API-REST-Services-MVC4
使用MediaTypeFormatter和OData支持使用ASP.NET Web API构建和使用REST服务
将JSON.NET与ASP.NET Web API结合使用
http://blogs.msdn.com/b/henrikn/archive/2012/02/18/using-json-net-with-asp-net-web-api.aspx
在ASP.NET Web API中为逗号分隔值(CSV)格式创建自定义CSVMediaTypeFormatter
在ASP.NET Web API中实现CORS支持
我如何看待Web API
答案 0 :(得分:7)
您可以使用完全不同的项目来托管Web API控制器。但在这种情况下,您需要考虑部署。
Web API只是一个Web项目。它将有自己的配置文件。它可能会在自己的工作进程中运行(取决于你如何部署它)。
因此,如果您将Web API分区,那么您将获得更大的灵活性,但最终可能会复制大量配置。
我的建议是,如果这样做,请确保两个项目都与相同的基础服务项目进行对话。如果第三方可能使用此Web API,则分区也很有意义。