国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

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

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 22:42:16
文檔

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

ASP.NET Web API教程 創(chuàng)建Admin控制器實例分享: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
推薦度:
導(dǎo)讀ASP.NET Web API教程 創(chuàng)建Admin控制器實例分享: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

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é)中,我們要添加一個對產(chǎn)品支持CRUD(創(chuàng)建、讀取、更新和刪除)操作的Web API控制器。該控制器將使用實體框架與數(shù)據(jù)庫層進(jìn)行通信。只有管理員才能夠使用這個控制器。客戶端將通過另一個控制器訪問產(chǎn)品。
In Solution Explorer, right-click the Controllers folder. Select Add and then Controller.
在“解決方案資源管理器”中右擊Controllers文件夾,選擇“添加”,然后選“控制器”(見圖2-16)。
WebAPI2-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>".
在“添加控制器”對話框中,將此控制器命名為AdminController。在“模板”下選擇“帶有讀/寫動作的API控制器(用實體框架)”。在“模型類”下選擇“Product (ProductStore.Models)”。在“數(shù)據(jù)上下文”下選擇“<新數(shù)據(jù)上下文>”(見圖2-17)。
WebAPI2-17 
圖2-17. 添加控制器對話框中的設(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.
如果“模型類”下拉列表未顯示任何模型類,請確保已編譯了此項目。實體框架使用反射,因此它需要已編譯的程序集。
Selecting "<New Data Context>" will open the New Data Context dialog. Name the data context ProductStore.Models.OrdersContext.
選擇“<新數(shù)據(jù)上下文>”會打開“新數(shù)據(jù)上下文”對話框。將該數(shù)據(jù)上下文命名為ProductStore.Models.OrdersContext(見圖2-18)。
WebAPI2-18 
圖2-18. 命名“新數(shù)據(jù)上下文”
Click OK to dismiss the New Data Context dialog. In the Add Controller dialog, click Add.
點擊“OK”退出這個“新數(shù)據(jù)上下文”對話框。在“添加控制器”對話框中點擊“添加”。
Here's what got added to the project:
以下是添加到項目的內(nèi)容:
A class named OrdersContext that derives from DbContext. This class provides the glue between the POCO models and the database.
一個名稱為的OrdersContext類,它派生于DbContext。這個類提供了POCO模型與數(shù)據(jù)庫之間的粘合。
A Web API controller named AdminController. This controller supports CRUD operations on Product instances. It uses the OrdersContext class to communicate with Entity Framework.
一個名稱為AdminController的Web API控制器。這個控制器支持對Product實例的CRUD操作。它使用OrdersContext類與實體框架進(jìn)行通信。
A new database connection string in the Web.config file.
Web.config文件中的一個新的數(shù)據(jù)庫連接字符串。
上述新添加項見圖2-19。
WebAPI2-19 
圖2-19. 新添加到項目的內(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.
打開OrdersContext.cs文件。注意,其構(gòu)造器指明了數(shù)據(jù)庫連接字符串的名稱。該名稱是指被添加到Web.config的連接字符串。
代碼如下:

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

將以下屬性添加到OrdersContext類:
代碼如下:

public DbSet<Order> Orders { get; set; }
public DbSet<OrderDetail> OrderDetails { get; set; }

A DbSet represents a set of entities that can be queried. Here is the complete listing for the OrdersContext class:
DbSet表示一組能夠被查詢的實體。以下是這個OrdersContext類的完整清單:
代碼如下:

public class OrdersContext : DbContext
{
public OrdersContext() : base("name=OrdersContext")
{
}
public DbSet<Order> Orders { get; set; }
public DbSet<OrderDetail> OrderDetails { get; set; }
public DbSet<Product> 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:
類定義了實現(xiàn)基本的CRUD功能的五個方法。每個方法對應(yīng)于一個客戶端可以請求的URI(見表2-2):
表2-2. AdminController中實現(xiàn)CRUD操作的五個方法
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.
每一個方法調(diào)用都會進(jìn)入OrdersContext對數(shù)據(jù)庫進(jìn)行查詢。對數(shù)據(jù)集進(jìn)行修改的方法(PUT、POST以及DELETE)會調(diào)用db.SaveChanges,以便把這些修改持久化回數(shù)據(jù)庫。每個HTTP請求都會創(chuàng)建控制器(實例),然后清除它。因此,在一個方法返回之前,對修改持久化是必要的。
Add a Database Initializer
添加數(shù)據(jù)庫初始化器
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.
實體框架有一個很好的特性,它讓你在(應(yīng)用程序)啟動時填充數(shù)據(jù)庫,并在模型發(fā)生修改時重建數(shù)據(jù)庫。這個特性在開發(fā)期間是有用的,因為你總會有一些測試數(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)建一個名稱為OrdersContextInitializer的新類。粘貼以下實現(xiàn):
代碼如下:

namespace ProductStore.Models
{
using System;
using System.Collections.Generic;
using System.Data.Entity;
public class OrdersContextInitializer : DropCreateDatabaseIfModelChanges<OrdersContext>
{
protected override void Seed(OrdersContext context)
{
var products = new List<Product>()
{
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 List<OrderDetail>()
{
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.
通過對DropCreateDatabaseIfModelChanges類的繼承,我們是在告訴實體框架,無論何時修改了模型類,便刪除數(shù)據(jù)庫。當(dāng)實體框架創(chuàng)建(或重建)數(shù)據(jù)庫時,它會調(diào)用Seed方法去填充數(shù)據(jù)庫。我們用這個Seed方法添加了一些例子產(chǎn)品和一個例子訂單。
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.
這個特性對于測試是很棒的,但在產(chǎn)品(指正式運行的應(yīng)用程序 — 譯者注)中不要使用這個DropCreateDatabaseIfModelChanges類。因為,如果有人修改了模型類,便會丟失數(shù)據(jù)。
Next, open Global.asax and add the following code to the Application_Start method:
下一步,打開Global.asax,并將以下代碼添加到Application_Start方法中:
代碼如下:

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

向控制器發(fā)送請求
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.
此刻,我們還沒有編寫任何客戶端代碼,但你已經(jīng)可以使用Web瀏覽器或諸如Fiddler之類的調(diào)試工具來調(diào)用這個Web API了。在Visual Studio中按F5鍵啟動調(diào)試。你的瀏覽器將打開網(wǎng)址http://localhost:portnum/,這里,portnum是某個端口號。
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ā)送一個HTTP請求到“http://localhost:portnum/api/admin”。第一次請求可能會慢一些才能完成,因為實體框架需要創(chuàng)建和種植數(shù)據(jù)庫。其響應(yīng)應(yīng)當(dāng)類似于下面這樣:
代碼如下:

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}]

看完此文如果覺得有所收獲,懇請給個推薦

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

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

ASP.NET Web API教程 創(chuàng)建Admin控制器實例分享: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
推薦度:
標(biāo)簽: 教程 管理員 API
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 欧美日韩精品免费一区二区三区 | 中文字幕在线不卡 | 黄色在线观看免费 | 久久成人国产精品一区二区 | 高清 国产 日韩 欧美 | 国产色在线视频 | 在线观看视频亚洲 | 亚洲一区二区三区在线播放 | 日韩在线视频精品 | 亚洲欧美在线综合 | 一级毛片黄 | 欧美a区| 免费黄毛片 | 免费一级 | 日韩欧美综合在线 | 拍拍拍免费网站 | 国产午夜小视频 | 国产一区在线免费观看 | 欧美综合自拍亚洲综合百度 | 影音先锋在线视频 | 乱妇伦交| 欧美日韩精选 | 高清一区二区 | 一区二区成人国产精品 | 成人免费一区二区三区 | 久久66热re国产毛片基地 | 亚洲国产精品一区二区三区 | 国产精品久久久久久一区二区 | 91伊人国产| 国产成a人片在线观看视频下载 | 亚洲好骚综合 | 久久精品一级 | 手机看片日韩欧美 | 国产激情一级毛片久久久 | 欧美一区二区在线 | 欧美三级一区二区 | 亚洲日韩在线观看 | 亚洲欧美另类视频 | 国产网站在线免费观看 | 91热成人精品国产免费 | 一级黄网站 |