This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Let me share a piece of my experience in the various issues I faced with setting up Swagger in my ASP.NET Core API, while upgrading it from the legacy aspnetcore2.2 to the most recent aspnetcore3.1 SDK
View Components in ASP.NET Core Simplified
In this article, let's discuss all about View Components in ASP.NET Core MVC and the scenarios it could be used with detailed examples.
Setting up and Serving Angular Code in an ASP.NET Core Project
Off late, Single-Page Applications or SPAs have become the most sought after client facing application stacks, for their light-weight and high performance nature. In this architecture, the server focuses on data logic and supplies data to the client in the form of RESTful APIs, while the client application renders the fetched data onto a fluid and dynamic layout.
Write-through Caching in ASP.NET Core Simplified
Cache refers to a high-speed memory section which is dedicated for storing and accessing less frequently updated but read data.
How to Lazy Loading Cache in ASP.NET Core
In-Memory Cache refers to a high-speed memory section which is dedicated for storing and accessing less frequently updated but read data.
Social Authentication in ASP.NET Core – Handling Multiple Login Providers
So far we have seen in details about how we can provide Google and Facebook authentication for a user with each provider having its own configuration and middleware invoked. In general scenarios, one would prefer providing multiple options for user to signin as it can open up multiple sections of audience
Scenario – Bypassing jwt token validation in an Authentication Middleware
Let's look at a hypothetical scenario, wherein we would want the authentication middleware to completely be bypassed, but yet the user context for the request be setup for us to use at a later point in the request pipeline.
How to Response Caching in ASP.NET Core
In this article, let's talk extensively about what caching is about and how we can generally induce response caching to our App.
Implementing ProtoBuf Media Formatter on an ASP.NET Core API
Custom media formatters are used for providing data exchange between client and server in a type which is not a standard media type in the likes of above. Let's see how we can implement a media formatter which enables us to have data exchange between client and server using a media called Protocol Buffers aka ProtoBuf.