【ASP.NET Web API教程】2 创建各种Web API

时间:2024-01-13 20:00:02

原文 【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安装包,本系列翻译略 — 译者注)