主頁(yè) > 知識(shí)庫(kù) > ASP.NET Web API教程 創(chuàng)建Admin控制器實(shí)例分享

ASP.NET Web API教程 創(chuàng)建Admin控制器實(shí)例分享

熱門(mén)標(biāo)簽:外呼系統(tǒng)用員工身份證 保山電話(huà)外呼管理系統(tǒng)怎么用 使用智能電話(huà)機(jī)器人違法嗎 朝陽(yáng)市地圖標(biāo)注 太原外呼電銷(xiāo)機(jī)器人費(fèi)用 蘇州銷(xiāo)售外呼系統(tǒng)預(yù)算 電話(huà)機(jī)器人廣告話(huà)術(shù) 淘寶地圖標(biāo)注如何做 東莞語(yǔ)音電銷(xiāo)機(jī)器人排名
In this section, we'll add a Web API controller that supports CRUD (create, read, update, and delete) operations on products. The controller will use Entity Framework to communicate with the database layer. Only administrators will be able to use this controller. Customers will access the products through another controller.
在本小節(jié)中,我們要添加一個(gè)對(duì)產(chǎn)品支持CRUD(創(chuàng)建、讀取、更新和刪除)操作的Web API控制器。該控制器將使用實(shí)體框架與數(shù)據(jù)庫(kù)層進(jìn)行通信。只有管理員才能夠使用這個(gè)控制器。客戶(hù)端將通過(guò)另一個(gè)控制器訪(fǎng)問(wèn)產(chǎn)品。
In Solution Explorer, right-click the Controllers folder. Select Add and then Controller.
在“解決方案資源管理器”中右擊Controllers文件夾,選擇“添加”,然后選“控制器”(見(jiàn)圖2-16)。
 
圖2-16. 添加控制器
In the Add Controller dialog, name the controller AdminController. Under Template, select "API controller with read/write actions, using Entity Framework". Under Model class, select "Product (ProductStore.Models)". Under Data Context, select "New Data Context>".
在“添加控制器”對(duì)話(huà)框中,將此控制器命名為AdminController。在“模板”下選擇“帶有讀/寫(xiě)動(dòng)作的API控制器(用實(shí)體框架)”。在“模型類(lèi)”下選擇“Product (ProductStore.Models)”。在“數(shù)據(jù)上下文”下選擇“新數(shù)據(jù)上下文>”(見(jiàn)圖2-17)。
 
圖2-17. 添加控制器對(duì)話(huà)框中的設(shè)置
If the Model class drop-down does not show any model classes, make sure you compiled the project. Entity Framework uses reflection, so it needs the compiled assembly.
如果“模型類(lèi)”下拉列表未顯示任何模型類(lèi),請(qǐng)確保已編譯了此項(xiàng)目。實(shí)體框架使用反射,因此它需要已編譯的程序集。
Selecting "New Data Context>" will open the New Data Context dialog. Name the data context ProductStore.Models.OrdersContext.
選擇“新數(shù)據(jù)上下文>”會(huì)打開(kāi)“新數(shù)據(jù)上下文”對(duì)話(huà)框。將該數(shù)據(jù)上下文命名為ProductStore.Models.OrdersContext(見(jiàn)圖2-18)。
 
圖2-18. 命名“新數(shù)據(jù)上下文”
Click OK to dismiss the New Data Context dialog. In the Add Controller dialog, click Add.
點(diǎn)擊“OK”退出這個(gè)“新數(shù)據(jù)上下文”對(duì)話(huà)框。在“添加控制器”對(duì)話(huà)框中點(diǎn)擊“添加”。
Here's what got added to the project:
以下是添加到項(xiàng)目的內(nèi)容:
A class named OrdersContext that derives from DbContext. This class provides the glue between the POCO models and the database.
一個(gè)名稱(chēng)為的OrdersContext類(lèi),它派生于DbContext。這個(gè)類(lèi)提供了POCO模型與數(shù)據(jù)庫(kù)之間的粘合。
A Web API controller named AdminController. This controller supports CRUD operations on Product instances. It uses the OrdersContext class to communicate with Entity Framework.
一個(gè)名稱(chēng)為AdminController的Web API控制器。這個(gè)控制器支持對(duì)Product實(shí)例的CRUD操作。它使用OrdersContext類(lèi)與實(shí)體框架進(jìn)行通信。
A new database connection string in the Web.config file.
Web.config文件中的一個(gè)新的數(shù)據(jù)庫(kù)連接字符串。
上述新添加項(xiàng)見(jiàn)圖2-19。
 
圖2-19. 新添加到項(xiàng)目的內(nèi)容
Open the OrdersContext.cs file. Notice that the constructor specifies the name of the database connection string. This name refers to the connection string that was added to Web.config.
打開(kāi)OrdersContext.cs文件。注意,其構(gòu)造器指明了數(shù)據(jù)庫(kù)連接字符串的名稱(chēng)。該名稱(chēng)是指被添加到Web.config的連接字符串。
復(fù)制代碼 代碼如下:

public OrdersContext() : base("name=OrdersContext")Add the following properties to the OrdersContext class:

將以下屬性添加到OrdersContext類(lèi):
復(fù)制代碼 代碼如下:

public DbSetOrder> Orders { get; set; }
public DbSetOrderDetail> OrderDetails { get; set; }

A DbSet represents a set of entities that can be queried. Here is the complete listing for the OrdersContext class:
DbSet表示一組能夠被查詢(xún)的實(shí)體。以下是這個(gè)OrdersContext類(lèi)的完整清單:
復(fù)制代碼 代碼如下:

public class OrdersContext : DbContext
{
public OrdersContext() : base("name=OrdersContext")
{
}
public DbSetOrder> Orders { get; set; }
public DbSetOrderDetail> OrderDetails { get; set; }
public DbSetProduct> Products { get; set; }
}

The AdminController class defines five methods that implement basic CRUD functionality. Each method corresponds to a URI that the client can invoke:
類(lèi)定義了實(shí)現(xiàn)基本的CRUD功能的五個(gè)方法。每個(gè)方法對(duì)應(yīng)于一個(gè)客戶(hù)端可以請(qǐng)求的URI(見(jiàn)表2-2):
表2-2. AdminController中實(shí)現(xiàn)CRUD操作的五個(gè)方法
table
Each method calls into OrdersContext to query the database. The methods that modify the collection (PUT, POST, and DELETE) call db.SaveChanges to persist the changes to the database. Controllers are created per HTTP request and then disposed, so it is necessary to persist changes before a method returns.
每一個(gè)方法調(diào)用都會(huì)進(jìn)入OrdersContext對(duì)數(shù)據(jù)庫(kù)進(jìn)行查詢(xún)。對(duì)數(shù)據(jù)集進(jìn)行修改的方法(PUT、POST以及DELETE)會(huì)調(diào)用db.SaveChanges,以便把這些修改持久化回?cái)?shù)據(jù)庫(kù)。每個(gè)HTTP請(qǐng)求都會(huì)創(chuàng)建控制器(實(shí)例),然后清除它。因此,在一個(gè)方法返回之前,對(duì)修改持久化是必要的。
Add a Database Initializer
添加數(shù)據(jù)庫(kù)初始化器
Entity Framework has a nice feature that lets you populate the database on startup, and automatically recreate the database whenever the models change. This feature is useful during development, because you always have some test data, even if you change the models.
實(shí)體框架有一個(gè)很好的特性,它讓你在(應(yīng)用程序)啟動(dòng)時(shí)填充數(shù)據(jù)庫(kù),并在模型發(fā)生修改時(shí)重建數(shù)據(jù)庫(kù)。這個(gè)特性在開(kāi)發(fā)期間是有用的,因?yàn)槟憧倳?huì)有一些測(cè)試數(shù)據(jù),甚至?xí)薷哪P汀?
In Solution Explorer, right-click the Models folder and create a new class named OrdersContextInitializer. Paste in the following implementation:
在“解決方案資源管理器”中,右擊Models文件夾,并創(chuàng)建一個(gè)名稱(chēng)為OrdersContextInitializer的新類(lèi)。粘貼以下實(shí)現(xiàn):
復(fù)制代碼 代碼如下:

namespace ProductStore.Models
{
using System;
using System.Collections.Generic;
using System.Data.Entity;
public class OrdersContextInitializer : DropCreateDatabaseIfModelChangesOrdersContext>
{
protected override void Seed(OrdersContext context)
{
var products = new ListProduct>()
{
new Product() { Name = "Tomato Soup", Price = 1.39M, ActualCost = .99M },
new Product() { Name = "Hammer", Price = 16.99M, ActualCost = 10 },
new Product() { Name = "Yo yo", Price = 6.99M, ActualCost = 2.05M }
};
products.ForEach(p => context.Products.Add(p));
context.SaveChanges();
var order = new Order() { Customer = "Bob" };
var od = new ListOrderDetail>()
{
new OrderDetail() { Product = products[0], Quantity = 2, Order = order},
new OrderDetail() { Product = products[1], Quantity = 4, Order = order }
};
context.Orders.Add(order);
od.ForEach(o => context.OrderDetails.Add(o));
context.SaveChanges();
}
}
}

By inheriting from the DropCreateDatabaseIfModelChanges class, we are telling Entity Framework to drop the database whenever we modify the model classes. When Entity Framework creates (or recreates) the database, it calls the Seed method to populate the tables. We use the Seed method to add some example products plus an example order.
通過(guò)對(duì)DropCreateDatabaseIfModelChanges類(lèi)的繼承,我們是在告訴實(shí)體框架,無(wú)論何時(shí)修改了模型類(lèi),便刪除數(shù)據(jù)庫(kù)。當(dāng)實(shí)體框架創(chuàng)建(或重建)數(shù)據(jù)庫(kù)時(shí),它會(huì)調(diào)用Seed方法去填充數(shù)據(jù)庫(kù)。我們用這個(gè)Seed方法添加了一些例子產(chǎn)品和一個(gè)例子訂單。
This feature is great for testing, but don't use the DropCreateDatabaseIfModelChanges class in production, because you could lose your data if someone changes a model class.
這個(gè)特性對(duì)于測(cè)試是很棒的,但在產(chǎn)品(指正式運(yùn)行的應(yīng)用程序 — 譯者注)中不要使用這個(gè)DropCreateDatabaseIfModelChanges類(lèi)。因?yàn)椋绻腥诵薷牧四P皖?lèi),便會(huì)丟失數(shù)據(jù)。
Next, open Global.asax and add the following code to the Application_Start method:
下一步,打開(kāi)Global.asax,并將以下代碼添加到Application_Start方法中:
復(fù)制代碼 代碼如下:

System.Data.Entity.Database.SetInitializer(
new ProductStore.Models.OrdersContextInitializer());Send a Request to the Controller

向控制器發(fā)送請(qǐng)求
At this point, we haven't written any client code, but you can invoke the web API using a web browser or an HTTP debugging tool such as Fiddler. In Visual Studio, press F5 to start debugging. Your web browser will open to http://localhost:portnum/, where portnum is some port number.
此刻,我們還沒(méi)有編寫(xiě)任何客戶(hù)端代碼,但你已經(jīng)可以使用Web瀏覽器或諸如Fiddler之類(lèi)的調(diào)試工具來(lái)調(diào)用這個(gè)Web API了。在Visual Studio中按F5鍵啟動(dòng)調(diào)試。你的瀏覽器將打開(kāi)網(wǎng)址http://localhost:portnum/,這里,portnum是某個(gè)端口號(hào)。
Send an HTTP request to "http://localhost:portnum/api/admin". The first request may be slow to complete, because Entify Entity Framework needs to create and seed the database. The response should something similar to the following:
發(fā)送一個(gè)HTTP請(qǐng)求到“http://localhost:portnum/api/admin”。第一次請(qǐng)求可能會(huì)慢一些才能完成,因?yàn)閷?shí)體框架需要?jiǎng)?chuàng)建和種植數(shù)據(jù)庫(kù)。其響應(yīng)應(yīng)當(dāng)類(lèi)似于下面這樣:
復(fù)制代碼 代碼如下:

HTTP/1.1 200 OK
Server: ASP.NET Development Server/10.0.0.0
Date: Mon, 18 Jun 2012 04:30:33 GMT
X-AspNet-Version: 4.0.30319
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Content-Type: application/json; charset=utf-8
Content-Length: 175
Connection: Close
[{"Id":1,"Name":"Tomato Soup","Price":1.39,"ActualCost":0.99},{"Id":2,"Name":"Hammer",
"Price":16.99,"ActualCost":10.00},{"Id":3,"Name":"Yo yo","Price":6.99,"ActualCost":
2.05}]

看完此文如果覺(jué)得有所收獲,懇請(qǐng)給個(gè)推薦
您可能感興趣的文章:
  • 創(chuàng)建一個(gè)完整的ASP.NET Web API項(xiàng)目
  • ASP.NET中Web API的簡(jiǎn)單實(shí)例
  • ASP.NET MVC Web API HttpClient簡(jiǎn)介
  • ASP.NET Web Api 2實(shí)現(xiàn)多文件打包并下載文件的實(shí)例
  • 支持Ajax跨域訪(fǎng)問(wèn)ASP.NET Web Api 2(Cors)的示例教程
  • ASP.NET Web API教程 創(chuàng)建Admin視圖詳細(xì)介紹
  • ASP.NET Web API如何將注釋自動(dòng)生成幫助文檔
  • ASP.NET Web API教程 創(chuàng)建域模型的方法詳細(xì)介紹
  • .Net Web Api中利用FluentValidate進(jìn)行參數(shù)驗(yàn)證的方法

標(biāo)簽:阿里 潛江 克拉瑪依 運(yùn)城 西藏 綏化 呼倫貝爾 洛陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET Web API教程 創(chuàng)建Admin控制器實(shí)例分享》,本文關(guān)鍵詞  ASP.NET,Web,API,教程,創(chuàng)建,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET Web API教程 創(chuàng)建Admin控制器實(shí)例分享》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于ASP.NET Web API教程 創(chuàng)建Admin控制器實(shí)例分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章