Adding Swagger Page to Azure Functions Project
Now a days, many applications use Serverless APIs. And as we all know, basically, these serverless APIs are basically HTTP triggered Azure Functions. And when it comes to HTTP APIs,…
Now a days, many applications use Serverless APIs. And as we all know, basically, these serverless APIs are basically HTTP triggered Azure Functions. And when it comes to HTTP APIs,…
Since past few articles, I have been trying to write about the new features introduced in C# 11 and .NET 7. We already have seen some features like raw string…
C# 9 introduced a new type - record. C# 10 introduced record struct. In this article, we are going to see how the classes and structs are different from this…
Is this title confusing ? I must admit thought a lot about what should be the title of this blogpost and could not come up with better than this one.…
This article is an extension to previous article about .NET generic host. There are many framework provided services, which are registered automatically. For full list, see Dependency injection in ASP.NET Core.…
In this article, let's have a look at the default interface methods feature which has been added in C# 8. Scenario of Evolving Interfaces Let's take a scenario to understand…
There are two access modifiers which can easily cause confusions - protected internal and private protected. In this article, we are going to discuss about these two access modifiers. Access…
In this article, let's try to see how can we use .NET client SDK with Cosmos DB. We will have look at important APIs to manage the database. In this…
Azure does not provide any ability to move the data. You have to copy the data and then delete form the original container if you want to move the data.…