Azure Cosmos DB- SQL API using EF Core- Part two

Recap In my previous article, we have seen the introduction of the Cosmos DB. If you haven’t read my previous article then I highly encourage you to do so https://dotnetintellect.com/2020/06/29/azure-cosmos-db-intro/ Azure Cosmos DB CLI Let's begin with creating Azure resources using CLI //login az login //Resource group creation $resourcegroup="CosmosDBverify" az group create -l southindia -n …

Continue reading Azure Cosmos DB- SQL API using EF Core- Part two

Azure Cosmos DB Intro- Part 1

Introduction Azure Cosmos DB is a globally distributed, multi-model, horizontally scalable, low latency, high availability database. It allows you to manage your data even if you keep them in data centers that are scattered throughout the world.It can provided tools that you need to scale the globally distributed database. Features of Cosmos DB Globally Distributed: …

Continue reading Azure Cosmos DB Intro- Part 1

Exploring Azure Functions- Bindings

Recap In my previous article, we have seen how EF Core can be implemented with HTTP trigger. If you haven't read my previous articles then I highly encourage you to do https://dotnetintellect.com/2020/06/09/exploring-azure-functions-http-trigger-using-ef-core/ https://dotnetintellect.com/2020/06/08/azure-function-intro/ Source Code Introduction Before going into Bindings, we first need to understand about Triggers as Bindings cannot co-exists without Azure Function triggers. …

Continue reading Exploring Azure Functions- Bindings