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

Yogesh VedpathakPosted Jun 4, 2020, 11:48 AM
Viswanatha SwamyPosted Jun 4, 2020, 11:18 AM