Desidero creare un documento in blue documentdb con una colonna di incremento automatico.Come creare una colonna auto incrementata in Documentdb
È possibile? Se sì, per favore guidami.
Qualsiasi aiuto sarebbe molto apprezzato.
Database db = CreateOrReadDocumentDb("EmployeeDb").Result;
DocumentCollection dc = CreateOrReadDocumentCollection(db.SelfLink, "EmployeeDetails").Result;
Employee emp = new Employee();
emp.Name="ABC";
emp.id="";//automatically generate a unique string
emp.sal=10000;
emp.exp =5;
emp.index=0; // I want an auto increment column for emp with name index and want to store in azure document db
client.CreateDocumentAsync(collectionLink, data);
non esattamente, modifico la mia domanda :) –
possibile duplicato di [Abbiamo colonna di identità in DocumentDB] (http://stackoverflow.com/questions/26701587/do-we-have-identity-column-in -documentdb) –
grazie Abdel Raoof :) –