我想在azure documentdb中創建一個帶有自動增量列的文檔。如何在Documentdb中創建自動遞增列
這可能嗎?如果是,請指導我。
任何幫助將不勝感激。
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);
不完全,我將編輯我的問題:)的 –
可能重複[我們有在DocumentDB標識列(http://stackoverflow.com/questions/26701587/do-we-have-identity-column-in -documentdb) –
感謝Abdel Raoof :) –