How to import bulk data in documentDB from excel?
I have surfed for a day about how to insert bulk data in documentDB from excel file, but I didn't get any informaion. I can able to read data from excel file and insert one by one in documentDB Service service = new Service(); foreach(data in exceldata) //exceldata contains set of rows { var student = new Student(); student.id= ""; student.name = data.name; student.age = data.age; student.class = data.class; student.id = service.savetoDocumentDB(collectionLink,student); //collectionlink is a string stored in web.config students.add(student); } Class Service { public async Task<string>