Chcę utworzyć dokument w błękitnym dokumencie id z kolumną automatycznego przyrostu.Jak utworzyć kolumnę z automatyczną inkrementacją w Documentdb
Czy to możliwe? Jeśli tak, proszę mnie poprowadzić.
Każda pomoc zostanie bardzo doceniona.
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);
niezupełnie, będę edytować moje pytanie :) –
możliwy duplikat [Czy mamy kolumnę tożsamości w DocumentDB] (http://stackoverflow.com/questions/26701587/do-we-have-identity-column-in -documentdb) –
dzięki Abdel Raoof :) –