REST Client For Visual Studio 2022
In this post, we’ll see what a REST Client for Visual Studio 2022 is and what we can do with it. The REST Client is… Read More »REST Client For Visual Studio 2022
In this post, we’ll see what a REST Client for Visual Studio 2022 is and what we can do with it. The REST Client is… Read More »REST Client For Visual Studio 2022
what are Minimal APIs in ASP.NET Core 6 and how they are created. We’ll also examine what is difference between Minimal APIs and traditional mvc controllers. We’ll also see the limitations of minimal apis and when to use them
What are Guard Clauses? A guard in general is to protect against the damage that may happen in the future. In computer programming, a guard… Read More »What are Guard Clauses in .NET
The reason for generating fake data can be anything. But, the most common use case I think for generating fake data is when someone is… Read More »How to generate Fake data in C#?
In the previous post, we saw how to cancel a request using axios in VueJS. So, does cancelling a request really issues a cancellation token… Read More »Cancelling a request issues a cancellation on backend?
If you are familiar with C# programming language, to cancel a Task in C#, we issue a call to Cancel() method call on the CancellationTokenSource.… Read More »How to cancel a request using Axios in Vue JS
Definition Observer design pattern defines a one-to-many dependency between the objects. When the object state changes, the observers are notified/updated about the change. Observer Pattern… Read More »Observer Design Pattern with an example in CSharp
In this post, we will see how to integrate a backend in a Vue application and set the backend under a proxy url. By the… Read More »Integrating backend in Vue applications with a proxy
In this post, we’ll see how we can create a custom directive for displaying tooltip for any element if the text in the element goes… Read More »v-tooltip: A custom directive for showing tooltip in VUE JS
In this post, I’ll explain how a request comes into the ASP.NET Core web server and how it returns a response to the browser. If… Read More »How does ASP.NET Core processes a request?