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: …
Month: June 2020
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. …
Exploring Azure Functions HTTP trigger using EF Core
Introduction The HTTP trigger lets you invoke a function with an HTTP request. These HTTP trigger lets you build serverless api and respond to the webhooks. In case you haven't read my previous article, I would recommend you to read from here Source Code Here Attributes Attribute PropertyDescriptionRouteIt define the route template on which the …
Continue reading Exploring Azure Functions HTTP trigger using EF Core