DocumentDB - Tipi di dati
JSON o JavaScript Object Notation è uno standard aperto basato su testo leggero progettato per lo scambio di dati leggibili dall'uomo e anche facile da analizzare e generare per le macchine. JSON è il cuore di DocumentDB. Trasmettiamo JSON via cavo, memorizziamo JSON come JSON e indicizziamo l'albero JSON consentendo query sul documento JSON completo.
Il formato JSON supporta i seguenti tipi di dati:
S.No. | Tipo e descrizione |
---|---|
1 | Number Formato a virgola mobile a doppia precisione in JavaScript |
2 | String Unicode con virgolette doppie con escape della barra rovesciata |
3 | Boolean Vero o falso |
4 | Array Una sequenza ordinata di valori |
5 | Value Può essere una stringa, un numero, vero o falso, null, ecc. |
6 | Object Una raccolta non ordinata di coppie chiave: valore |
7 | Whitespace Può essere utilizzato tra qualsiasi coppia di gettoni |
8 | Null Vuoto |
Diamo un'occhiata a un semplice esempio di tipo DateTime. Aggiungi la data di nascita alla classe del cliente.
public class Customer {
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
// Must be nullable, unless generating unique values for new customers on client
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
[JsonProperty(PropertyName = "address")]
public Address Address { get; set; }
[JsonProperty(PropertyName = "birthDate")]
public DateTime BirthDate { get; set; }
}
Possiamo archiviare, recuperare ed eseguire query utilizzando DateTime come mostrato nel codice seguente.
private async static Task CreateDocuments(DocumentClient client) {
Console.WriteLine();
Console.WriteLine("**** Create Documents ****");
Console.WriteLine();
var document3Definition = new Customer {
Id = "1001",
Name = "Luke Andrew",
Address = new Address {
AddressType = "Main Office",
AddressLine1 = "123 Main Street",
Location = new Location {
City = "Brooklyn",
StateProvinceName = "New York"
},
PostalCode = "11229",
CountryRegionName = "United States"
},
BirthDate = DateTime.Parse(DateTime.Today.ToString()),
};
Document document3 = await CreateDocument(client, document3Definition);
Console.WriteLine("Created document {0} from typed object", document3.Id);
Console.WriteLine();
}
Quando il codice sopra viene compilato ed eseguito e il documento viene creato, vedrai che la data di nascita è stata aggiunta ora.
**** Create Documents ****
Created new document: 1001
{
"id": "1001",
"name": "Luke Andrew",
"address": {
"addressType": "Main Office",
"addressLine1": "123 Main Street",
"location": {
"city": "Brooklyn",
"stateProvinceName": "New York"
},
"postalCode": "11229",
"countryRegionName": "United States"
},
"birthDate": "2015-12-14T00:00:00",
"_rid": "Ic8LAMEUVgAKAAAAAAAAAA==",
"_ts": 1450113676,
"_self": "dbs/Ic8LAA==/colls/Ic8LAMEUVgA=/docs/Ic8LAMEUVgAKAAAAAAAAAA==/",
"_etag": "\"00002d00-0000-0000-0000-566efa8c0000\"",
"_attachments": "attachments/"
}
Created document 1001 from typed object