top of page
Search


SignalR Core: Heartbeat and Redis
Realtime applications are hard to design in .NET world, we have SignalR Core which gives us a painless interface for developing such...

The Tech Platform
Dec 14, 2021


Use multiple implementations of an interface with ASP.NET Core DI
In this article, we will be using the same example by extending it to use multiple implementation of logger service by resolving it based...

The Tech Platform
Dec 8, 2021


How to Apply API Versioning in ASP.NET Core
API versioning is an essential feature of web development that enables developers to control the versions of their APIs. With versioning,...

The Tech Platform
Dec 6, 2021


Single Transaction per Request ASP.NET CORE with EntityFramework
When developing web applications, it is important to ensure that all database transactions are handled in a consistent and efficient...

The Tech Platform
Nov 23, 2021


How to use IDisposable in ASP.NET Core
In ASP.NET Core, the IDisposable interface provides a mechanism for releasing unmanaged resources used by a class. It allows developers...

The Tech Platform
Nov 12, 2021


WebHook integration using ASP.NET Core
Webhooks are a way for an external service to notify your application when an event occurs. This can be used to trigger actions or...

The Tech Platform
Nov 3, 2021


Introducing Clean Blazor
In web development, starting a new project often means wading through a sea of boilerplate code. This boilerplate, while useful in some...

The Tech Platform
Oct 24, 2021


How to Create Data Visualization App with Blazor
Data visualization has become a pivotal aspect of modern applications, providing a compelling way to present complex information...

The Tech Platform
Oct 24, 2021


Enum as Required Field in ASP.NET Core WebAPI
Enums in C# are a set of named constants that represent a finite list of values. They are used to define a set of related named...

The Tech Platform
Oct 22, 2021


Implement a Rate Limiting Middleware in ASP.NET Core
When building APIs, regardless of the framework and language you are using, you may want to limit the number of requests an API accepts...

The Tech Platform
Oct 21, 2021
bottom of page