- DocumentDB - Visualize Data
- DocumentDB - Access Control
- DocumentDB - Data Migration
- DocumentDB - Partitioning
- DocumentDB - Geospatial Data
- DocumentDB - Indexing Records
- DocumentDB - Sorting Records
- DocumentDB - Limiting Records
- DocumentDB - Data Types
- DocumentDB - Data Modeling
- DocumentDB - Delete Document
- DocumentDB - Update Document
- DocumentDB - Query Document
- DocumentDB - Insert Document
- DocumentDB - Delete Collection
- DocumentDB - Create Collection
- DocumentDB - Drop Databases
- DocumentDB - List Databases
- DocumentDB - Create Database
- DocumentDB - Connect Account
- DocumentDB - Create Account
- DocumentDB - Environment Setup
- DocumentDB - Advantages
- DocumentDB - Introduction
- DocumentDB - Home
DocumentDB Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
DocumentDB - Data Modepng
While schema-free databases, pke DocumentDB, make it super easy to embrace changes to your data model, you should still spend some time thinking about your data.
You have a lot of options. Naturally, you can just work JSON object graphs or even raw strings of JSON text, but you can also use dynamic objects that lets you bind to properties at runtime without defining a class at compile time.
You can also work with real C# objects, or Entities as they are called, which might be your business domain classes.
Relationships
Let’s take a look at the document s hierarchal structure. It has a few top-level properties pke the required id, as well as lastName and isRegistered, but it also has nested properties.
{ "id": "AndersenFamily", "lastName": "Andersen", "parents": [ { "firstName": "Thomas", "relationship": "father" }, { "firstName": "Mary Kay", "relationship": "mother" } ], "children": [ { "firstName": "Henriette Thaulow", "gender": "female", "grade": 5, "pets": [ { "givenName": "Fluffy", "type": "Rabbit" } ] } ], "location": { "state": "WA", "county": "King", "city": "Seattle"}, "isRegistered": true }
For instance, the parents property is suppped as a JSON array as denoted by the square brackets.
We also have another array for children, even though there s only one child in the array in this example. So this is how you model the equivalent of one-to-many relationships within a document.
You simply use arrays where each element in the array could be a simple value or another complex object, even another array.
So one family can have multiple parents and multiple children and if you look at the child objects, they have a pet’s property that is itself a nested array for a oneto-many relationship between children and pets.
For the location property, we re combining three related properties, the state, county, and city into an object.
Embedding an object this way rather than embedding an array of objects is similar to having a one-to-one relationship between two rows in separate tables in a relational database.
Embedding Data
When you start modepng data in a document store, such as DocumentDB, try to treat your entities as self-contained documents represented in JSON. When working with relational databases, we always normapze data.
Normapzing your data typically involves taking an entity, such as a customer, and breaking it down into discreet pieces of data, pke contact details and addresses.
To read a customer, with all their contact details and addresses, you need to use JOINS to effectively aggregate your data at run time.
Now let s take a look at how we would model the same data as a self-contained entity in a document database.
{ "id": "1", "firstName": "Mark", "lastName": "Upston", "addresses": [ { "pne1": "232 Main Street", "pne2": "Unit 1", "city": "Brooklyn", "state": "NY", "zip": 11229 } ], "contactDetails": [ {"email": "mark.upston@xyz.com"}, {"phone": "+1 356 545-86455", "extension": 5555} ] }
As you can see that we have denormapzed the customer record where all the information of the customer is embedded into a single JSON document.
In NoSQL we have a free schema, so you can add contact details and addresses in different format as well. In NoSQL, you can retrieve a customer record from the database in a single read operation. Similarly, updating a record is also a single write operation.
Following are the steps to create documents using .Net SDK.
Step 1 − Instantiate DocumentCpent. Then we will query for the myfirstdb database and also query for MyCollection collection, which we store in this private variable collection so that s it s accessible throughout the class.
private static async Task CreateDocumentCpent() { // Create a new instance of the DocumentCpent using (var cpent = new DocumentCpent(new Uri(EndpointUrl), AuthorizationKey)) { database = cpent.CreateDatabaseQuery("SELECT * FROM c WHERE c.id = myfirstdb ").AsEnumerable().First(); collection = cpent.CreateDocumentCollectionQuery(database.CollectionsLink, "SELECT * FROM c WHERE c.id = MyCollection ").AsEnumerable().First(); await CreateDocuments(cpent); } }
Step 2 − Create some documents in CreateDocuments task.
private async static Task CreateDocuments(DocumentCpent cpent) { Console.WriteLine(); Console.WriteLine("**** Create Documents ****"); Console.WriteLine(); dynamic document1Definition = new { name = "New Customer 1", address = new { addressType = "Main Office", addressLine1 = "123 Main Street", location = new { city = "Brooklyn", stateProvinceName = "New York" }, postalCode = "11229", countryRegionName = "United States" }, }; Document document1 = await CreateDocument(cpent, document1Definition); Console.WriteLine("Created document {0} from dynamic object", document1.Id); Console.WriteLine(); }
The first document will be generated from this dynamic object. This might look pke JSON, but of course it isn t. This is C# code and we re creating a real .NET object, but there s no class definition. Instead the properties are inferred from the way the object is initiapzed. You can notice also that we haven t suppped an Id property for this document.
Step 3 − Now let s take a look at the CreateDocument and it looks pke the same pattern we saw for creating databases and collections.
private async static Task<Document> CreateDocument(DocumentCpent cpent, object documentObject) { var result = await cpent.CreateDocumentAsync(collection.SelfLink, documentObject); var document = result.Resource; Console.WriteLine("Created new document: {0} {1}", document.Id, document); return result; }
Step 4 − This time we call CreateDocumentAsync specifying the SelfLink of the collection we want to add the document to. We get back a response with a resource property that, in this case, represents the new document with its system-generated properties.
In the following CreateDocuments task, we have created three documents.
In the first document, the Document object is a defined class in the SDK that inherits from resource and so it has all the common resource properties, but it also includes the dynamic properties that define the schema-free document itself.
private async static Task CreateDocuments(DocumentCpent cpent) { Console.WriteLine(); Console.WriteLine("**** Create Documents ****"); Console.WriteLine(); dynamic document1Definition = new { name = "New Customer 1", address = new { addressType = "Main Office", addressLine1 = "123 Main Street", location = new { city = "Brooklyn", stateProvinceName = "New York" }, postalCode = "11229", countryRegionName = "United States" }, }; Document document1 = await CreateDocument(cpent, document1Definition); Console.WriteLine("Created document {0} from dynamic object", document1.Id); Console.WriteLine(); var document2Definition = @" { ""name"": ""New Customer 2"", ""address"": { ""addressType"": ""Main Office"", ""addressLine1"": ""123 Main Street"", ""location"": { ""city"": ""Brooklyn"", ""stateProvinceName"": ""New York"" }, ""postalCode"": ""11229"", ""countryRegionName"": ""United States"" } }"; Document document2 = await CreateDocument(cpent, document2Definition); Console.WriteLine("Created document {0} from JSON string", document2.Id); Console.WriteLine(); var document3Definition = new Customer { Name = "New Customer 3", Address = new Address { AddressType = "Main Office", AddressLine1 = "123 Main Street", Location = new Location { City = "Brooklyn", StateProvinceName = "New York" }, PostalCode = "11229", CountryRegionName = "United States" }, }; Document document3 = await CreateDocument(cpent, document3Definition); Console.WriteLine("Created document {0} from typed object", document3.Id); Console.WriteLine(); }
This second document just works with a raw JSON string. Now we step into an overload for CreateDocument that uses the JavaScriptSeriapzer to de-seriapze the string into an object, which it then passes on to the same CreateDocument method that we used to create the first document.
In the third document, we have used the C# object Customer which is defined in our apppcation.
Let’s take a look at this customer, it has an Id and address property where the address is a nested object with its own properties including location, which is yet another nested object.
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DocumentDBDemo { pubpc class Customer { [JsonProperty(PropertyName = "id")] pubpc string Id { get; set; } // Must be nullable, unless generating unique values for new customers on cpent [JsonProperty(PropertyName = "name")] pubpc string Name { get; set; } [JsonProperty(PropertyName = "address")] pubpc Address Address { get; set; } } pubpc class Address { [JsonProperty(PropertyName = "addressType")] pubpc string AddressType { get; set; } [JsonProperty(PropertyName = "addressLine1")] pubpc string AddressLine1 { get; set; } [JsonProperty(PropertyName = "location")] pubpc Location Location { get; set; } [JsonProperty(PropertyName = "postalCode")] pubpc string PostalCode { get; set; } [JsonProperty(PropertyName = "countryRegionName")] pubpc string CountryRegionName { get; set; } } pubpc class Location { [JsonProperty(PropertyName = "city")] pubpc string City { get; set; } [JsonProperty(PropertyName = "stateProvinceName")] pubpc string StateProvinceName { get; set; } } }
We also have JSON property attributes in place because we want to maintain proper conventions on both sides of the fence.
So I just create my New Customer object along with its nested child objects and call into CreateDocument once more. Although our customer object does have an Id property we didn t supply a value for it and so DocumentDB generated one based on the GUID, just pke it did for the previous two documents.
When the above code is compiled and executed you will receive the following output.
**** Create Documents **** Created new document: 575882f0-236c-4c3d-81b9-d27780206b2c { "name": "New Customer 1", "address": { "addressType": "Main Office", "addressLine1": "123 Main Street", "location": { "city": "Brooklyn", "stateProvinceName": "New York" }, "postalCode": "11229", "countryRegionName": "United States" }, "id": "575882f0-236c-4c3d-81b9-d27780206b2c", "_rid": "kV5oANVXnwDGPgAAAAAAAA==", "_ts": 1450037545, "_self": "dbs/kV5oAA==/colls/kV5oANVXnwA=/docs/kV5oANVXnwDGPgAAAAAAAA==/", "_etag": ""00006fce-0000-0000-0000-566dd1290000"", "_attachments": "attachments/" } Created document 575882f0-236c-4c3d-81b9-d27780206b2c from dynamic object Created new document: 8d7ad239-2148-4fab-901b-17a85d331056 { "name": "New Customer 2", "address": { "addressType": "Main Office", "addressLine1": "123 Main Street", "location": { "city": "Brooklyn", "stateProvinceName": "New York" }, "postalCode": "11229", "countryRegionName": "United States" }, "id": "8d7ad239-2148-4fab-901b-17a85d331056", "_rid": "kV5oANVXnwDHPgAAAAAAAA==", "_ts": 1450037545, "_self": "dbs/kV5oAA==/colls/kV5oANVXnwA=/docs/kV5oANVXnwDHPgAAAAAAAA==/", "_etag": ""000070ce-0000-0000-0000-566dd1290000"", "_attachments": "attachments/" } Created document 8d7ad239-2148-4fab-901b-17a85d331056 from JSON string Created new document: 49f399a8-80c9-4844-ac28-cd1dee689968 { "id": "49f399a8-80c9-4844-ac28-cd1dee689968", "name": "New Customer 3", "address": { "addressType": "Main Office", "addressLine1": "123 Main Street", "location": { "city": "Brooklyn", "stateProvinceName": "New York" }, "postalCode": "11229", "countryRegionName": "United States" }, "_rid": "kV5oANVXnwDIPgAAAAAAAA==", "_ts": 1450037546, "_self": "dbs/kV5oAA==/colls/kV5oANVXnwA=/docs/kV5oANVXnwDIPgAAAAAAAA==/", "_etag": ""000071ce-0000-0000-0000-566dd12a0000"", "_attachments": "attachments/" } Created document 49f399a8-80c9-4844-ac28-cd1dee689968 from typed objectAdvertisements