REST API on Azure Functions with Entity Framework

Introduction Setting up a REST API on Azure is a popular choice. Azure functions stand out for their speed, cost-effectiveness, and lightweight nature. Yet, integrating databases with Azure functions can pose challenges, especially with the lack of out-of-the-box support for Entity Framework. In this article, we’ll explore the process of developing an HTTP REST API…

Azure Blob Storage with ASP.NET MVC

How to work with Azure Blob Storage and ASP.NET MVC Blob Storage is a part of Microsoft Azure platform. We can use Azure Blob Storage to store our unstructured data in the cloud as objects. We can store files like text files, media files, documents etc. In this article we are discussing about how to…