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

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

Azure Function-Intro

Introduction Azure Function is a serverless computing service hosted on Microsoft Azure public cloud. The main idea behind serverless computing, also known as Function as a service(FAAS), is to eliminate infrastructure considerations for the user. Traditionally during development, IT team has to consider the underlying infrastructure requirement. For cloud applications, IT team used to monitor …

Continue reading Azure Function-Intro