DocumentDB - สร้างคอลเล็กชัน
ในบทนี้เราจะเรียนรู้วิธีสร้างคอลเลกชัน มันคล้ายกับการสร้างฐานข้อมูล คุณสามารถสร้างคอลเล็กชันจากพอร์ทัลหรือจากโค้ดโดยใช้. Net SDK
Step 1 - ไปที่แดชบอร์ดหลักบนพอร์ทัล Azure
Step 2 - เลือก myfirstdb จากรายการฐานข้อมูล
Step 3- คลิกที่ตัวเลือก 'เพิ่มคอลเล็กชัน' และระบุ ID สำหรับการรวบรวม เลือกระดับราคาสำหรับตัวเลือกอื่น
Step 4 - มาเลือก S1 Standard แล้วคลิกปุ่ม Select → OK
ดังที่คุณเห็นว่ามีการเพิ่ม MyCollection ใน myfirstdb
คุณยังสามารถสร้างคอลเลกชันจากรหัสโดยใช้. Net SDK มาดูขั้นตอนต่อไปนี้เพื่อเพิ่มคอลเลกชันจากโค้ด
Step 1 - เปิดแอปพลิเคชันคอนโซลใน Visual Studio
Step 2 - ในการสร้างคอลเลกชันก่อนอื่นให้ดึงฐานข้อมูล myfirstdb โดยใช้ ID ในงาน CreateDocumentClient
private static async Task CreateDocumentClient() {
// Create a new instance of the DocumentClient
using (var client = new DocumentClient(new Uri(EndpointUrl), AuthorizationKey)) {
database = client.CreateDatabaseQuery("SELECT * FROM c WHERE c.id =
'myfirstdb'").AsEnumerable().First();
await CreateCollection(client, "MyCollection1");
await CreateCollection(client, "MyCollection2", "S2");
}
}
ต่อไปนี้คือการใช้งานสำหรับงาน CreateCollection
private async static Task CreateCollection(DocumentClient client, string collectionId,
string offerType = "S1") {
Console.WriteLine();
Console.WriteLine("**** Create Collection {0} in {1} ****", collectionId, database.Id);
var collectionDefinition = new DocumentCollection { Id = collectionId };
var options = new RequestOptions { OfferType = offerType };
var result = await client.CreateDocumentCollectionAsync(database.SelfLink,
collectionDefinition, options);
var collection = result.Resource;
Console.WriteLine("Created new collection");
ViewCollection(collection);
}
เราสร้างอ็อบเจ็กต์ DocumentCollection ใหม่ที่กำหนดคอลเล็กชันใหม่ด้วย Id ที่ต้องการสำหรับเมธอด CreateDocumentCollectionAsync ซึ่งยอมรับพารามิเตอร์อ็อพชันที่เราใช้ที่นี่เพื่อตั้งค่าระดับประสิทธิภาพของคอลเล็กชันใหม่ซึ่งเราเรียกว่า offerType
ค่าเริ่มต้นนี้เป็น S1 และเนื่องจากเราไม่ผ่าน offerType สำหรับ MyCollection1 ดังนั้นนี่จะเป็นคอลเล็กชัน S1 และสำหรับ MyCollection2 เราได้ผ่าน S2 ซึ่งทำให้เป็น S2 ดังที่แสดงด้านบน
ต่อไปนี้คือการนำเมธอด ViewCollection ไปใช้
private static void ViewCollection(DocumentCollection collection) {
Console.WriteLine("Collection ID: {0} ", collection.Id);
Console.WriteLine("Resource ID: {0} ", collection.ResourceId);
Console.WriteLine("Self Link: {0} ", collection.SelfLink);
Console.WriteLine("Documents Link: {0} ", collection.DocumentsLink);
Console.WriteLine("UDFs Link: {0} ", collection.UserDefinedFunctionsLink);
Console.WriteLine(" StoredProcs Link: {0} ", collection.StoredProceduresLink);
Console.WriteLine("Triggers Link: {0} ", collection.TriggersLink);
Console.WriteLine("Timestamp: {0} ", collection.Timestamp);
}
ต่อไปนี้เป็นการใช้งานไฟล์ program.cs สำหรับคอลเลกชันโดยสมบูรณ์
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Azure.Documents;
using Microsoft.Azure.Documents.Client;
using Microsoft.Azure.Documents.Linq;
using Newtonsoft.Json;
namespace DocumentDBDemo {
class Program {
private const string EndpointUrl = "https://azuredocdbdemo.documents.azure.com:443/";
private const string AuthorizationKey = "BBhjI0gxdVPdDbS4diTjdloJq7Fp4L5RO/
StTt6UtEufDM78qM2CtBZWbyVwFPSJIm8AcfDu2O+AfV T+TYUnBQ==";
private static Database database;
static void Main(string[] args) {
try {
CreateDocumentClient().Wait();
} catch (Exception e) {
Exception baseException = e.GetBaseException();
Console.WriteLine("Error: {0}, Message: {1}", e.Message, baseException.Message);
}
Console.ReadKey();
}
private static async Task CreateDocumentClient() {
// Create a new instance of the DocumentClient
using (var client = new DocumentClient(new Uri(EndpointUrl), AuthorizationKey)) {
database = client.CreateDatabaseQuery("SELECT * FROM c WHERE c.id =
'myfirstdb'").AsEnumerable().First();
await CreateCollection(client, "MyCollection1");
await CreateCollection(client, "MyCollection2", "S2");
//await CreateDatabase(client);
//GetDatabases(client);
//await DeleteDatabase(client);
//GetDatabases(client);
}
}
private async static Task CreateCollection(DocumentClient client,
string collectionId, string offerType = "S1") {
Console.WriteLine();
Console.WriteLine("**** Create Collection {0} in {1} ****", collectionId,
database.Id);
var collectionDefinition = new DocumentCollection { Id = collectionId };
var options = new RequestOptions { OfferType = offerType };
var result = await
client.CreateDocumentCollectionAsync(database.SelfLink,
collectionDefinition, options);
var collection = result.Resource;
Console.WriteLine("Created new collection");
ViewCollection(collection);
}
private static void ViewCollection(DocumentCollection collection) {
Console.WriteLine("Collection ID: {0} ", collection.Id);
Console.WriteLine("Resource ID: {0} ", collection.ResourceId);
Console.WriteLine("Self Link: {0} ", collection.SelfLink);
Console.WriteLine("Documents Link: {0} ", collection.DocumentsLink);
Console.WriteLine("UDFs Link: {0} ", collection.UserDefinedFunctionsLink);
Console.WriteLine("StoredProcs Link: {0} ", collection.StoredProceduresLink);
Console.WriteLine("Triggers Link: {0} ", collection.TriggersLink);
Console.WriteLine("Timestamp: {0} ", collection.Timestamp);
}
}
}
เมื่อรวบรวมและดำเนินการโค้ดด้านบนคุณจะได้รับผลลัพธ์ต่อไปนี้ซึ่งมีข้อมูลทั้งหมดที่เกี่ยวข้องกับการรวบรวม
**** Create Collection MyCollection1 in myfirstdb ****
Created new collection
Collection ID: MyCollection1
Resource ID: Ic8LAPPvnAA=
Self Link: dbs/Ic8LAA==/colls/Ic8LAPPvnAA=/
Documents Link: dbs/Ic8LAA==/colls/Ic8LAPPvnAA=/docs/
UDFs Link: dbs/Ic8LAA==/colls/Ic8LAPPvnAA=/udfs/
StoredProcs Link: dbs/Ic8LAA==/colls/Ic8LAPPvnAA=/sprocs/
Triggers Link: dbs/Ic8LAA==/colls/Ic8LAPPvnAA=/triggers/
Timestamp: 12/10/2015 4:55:36 PM
**** Create Collection MyCollection2 in myfirstdb ****
Created new collection
Collection ID: MyCollection2
Resource ID: Ic8LAKGHDwE=
Self Link: dbs/Ic8LAA==/colls/Ic8LAKGHDwE=/
Documents Link: dbs/Ic8LAA==/colls/Ic8LAKGHDwE=/docs/
UDFs Link: dbs/Ic8LAA==/colls/Ic8LAKGHDwE=/udfs/
StoredProcs Link: dbs/Ic8LAA==/colls/Ic8LAKGHDwE=/sprocs/
Triggers Link: dbs/Ic8LAA==/colls/Ic8LAKGHDwE=/triggers/
Timestamp: 12/10/2015 4:55:38 PM