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…

Predicate Builder to Build Dynamic Queries

Introduction to predicate builder Have you ever come across a situation that you need to build a dynamic query to fetch data from database? Building queries dynamically can be really painful and time consuming. But nothing to worry, we have some libraries to save us from this hassle (thanks to the developers who built those…

Web API Authentication .NET 5

In the last article we implemented the basic operations for our .NET 5 Web API. If you have missed the last article, you can read it here. In this article we are going to implement the authentication to secure our API. So we are adding JWT token based authentication to the API. Token-based authentications are…

.NET 5 Web API – Part 2

Hello everyone! Here we are continue to build our .NET 5 Web API. If you have missed the first part, please visit the introduction here. In the previous article, we have implemented the method to get all the movies. So here we can start with the method, Get movie by id to get a single…

.NET 5 Web API Introduction

.NET 5.0 officially released on November 10, 2020. As per Microsoft, .NET 5 is the next step of the .NET Core. Also .NET Framework and .NET  Core will become a single framework in the next .NET 6 release. Its always good to be prepared, So today we are going to try to build a .NET…