【ASP.NET Web API教程】2 建立各種Web API

weixin_34377065發表於2014-02-21

原文 【ASP.NET Web API教程】2 建立各種Web API

Chapter 2: Creating Web APIs
第2章 建立各種Web API

本文引自:http://www.asp.net/web-api/overview/creating-web-apis

In this chapter, you'll learn:
本章你將學習:

End-to-end tutorials and samples for ASP.NET Web API
ASP.NET Web API的端對端教程和示例。

2.1 Creating a Web API that Supports CRUD Operations
建立支援CRUD操作的Web API
This tutorial shows how to support CRUD operations in an HTTP service using ASP.NET Web API.
本教程展示在使用ASP.NET Web API的HTTP服務中如何支援CRUD操作。
2.2 Sample: Contact Manager
示例:聯絡人管理器
This sample uses ASP.NET Web API to build a simple contact manager application. The application consists of a contact manager web API that is used by an ASP.NET MVC application, a Windows Phone application, and a Windows 8 app to display and manage a list of contacts.
這個示例使用ASP.NET Web API建立了一個簡單的聯絡人管理器應用程式。該應用程式由一個聯絡人管理器的Web API所組成,它被用於由一個ASP.NET MVC應用程式、一個Windows Phone應用程式,和一個Windows 8應用程式來顯示和管理一組聯絡人。(該示例是一個含有原始碼的可下載專案,可從這裡下載,本系列翻譯略 — 譯者注)
2.3 Using Web API with Entity Framework (7 Tutorials)
與實體框架一起使用Web API(7個教程)
How to create a web API that uses Entity Framework for database persistence.
如何建立使用實體框架進行資料庫保持的Web API。
2.4 Creating a Help Page for a Web API
建立Web API的幫助頁面
By Mike Wasson|August 3, 2012
2.5 Introducing the ASP.NET Web API Help Page (Preview)
ASP.NET Web API幫助頁面簡介(預覽版)
This preview package automatically generates help page content for web APIs on your site. Everything generated by the help page is fully customizable using ASP.NET MVC and Razor.
這個預覽版的包為你的網站自動生成用於Web API的幫助頁面。由幫助頁面生成的所有內容都完成可以用ASP.NET MVC和Razor進行定製。(這是一個NuGet安裝包,本系列翻譯略 — 譯者注)

相關文章