Reputation: 31
I am learning asp.net core and azure concepts and wanted to create simple crud application with login ,authorization and authentication feature using cosmosdb. I am getting lots of things to implement it with sql server, but i wanted to implement using cosmos db.
Please let me know if any blogs or tutorial available on internet. Or can post simple example here also.
Thanks a lot in advance.
Upvotes: 3
Views: 3605
Reputation: 1183
The previously mentioned Github project by felschr is no longer maintained. You could use this project by codekoenig as an alternative.
Upvotes: 1
Reputation: 29966
For combing Asp.Net Core Identity and Cosmosdb, you could try AspNetCore.Identity.DocumentDB and aspnet-identity-mongo.
For implementing CURD with Cosmosdb, you could try Tutorial: Develop an ASP.NET Core MVC web application with Azure Cosmos DB by using .NET SDK
Upvotes: 0