I am trying to Insert Data into Azure cosmos db
My code
- [HttpPost]
- public async Task<ActionResult> AddEmployee(Employee employee)
- {
- await this.client.CreateDocumentAsync(UriFactory.CreateDocumentCollectionUri("Employee", "Items"), employee);
- return RedirectToAction("Employees");
- }