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

Microsoft Service Bus-Queue

Overview Microsoft service bus is a fully managed enterprise integration message broker and it can decouple applications and services. Service bus offer secure communication using asynchronous transfer of data and state. Source Code here Data is transferred from sender to an receiver using a concept called message; however, message is in binary format and can …

Continue reading Microsoft Service Bus-Queue