top of page
Search

The Tech Platform
Jul 11, 2022
Checking Orleans with the PVS-Studio analyzer
Introduction Orleans is a cross-platform framework for creating scalable cloud applications. This software is developed by Microsoft, and...

The Tech Platform
Jul 11, 2022
CI / CD with GitHub in .NET
GitHub uses GitHub Actions to launch CI / CD, the documentation for which can be found here and read in full. Here’s an example of how to...

The Tech Platform
Jul 7, 2022
Configure Multiple DBs with Repository pattern in .Net Core
To configure mongoDB, we need to install mongoDB driver for C#, this we can install via NuGet package manager. After installation we need...

The Tech Platform
Jul 4, 2022
How to Migrate Old ASP.NET Applications to .NET Core?
.NET Core is a new version of .NET Framework, which is a free, open-source, general-purpose development platform maintained by Microsoft....

The Tech Platform
Jun 28, 2022
Filters in ASP.NET: How to use dependency injection in action filters in ASP.NET Core?
Filters are special components in ASP.NET Core that allow us to control the execution of a request at specific stages of the request...

The Tech Platform
Jun 26, 2022
Tools for good code
Code quality tools are automated tools/programs that would observe the code and point out any common issue/problem which could arise as a...

The Tech Platform
Jun 24, 2022
Run and manage periodic background tasks in ASP.NET Core 6 with C#
So starting from the empy ASP.NET Core 6 template let’s create a simple sample service that represents our business logic that should be...

The Tech Platform
Jun 21, 2022
NLog with ILogger in .Net 6.0 Web API
In software development, where intricate systems and complex functionalities intertwine, logging stands as a silent sentinel, diligently...

The Tech Platform
Jun 20, 2022
How to use LoggerMessage in ASP.NET Core
ASP.NET Core is a popular web framework that allows developers to build modern, high-performance web applications using the .NET...

The Tech Platform
Jun 16, 2022
How to review your code?
Code review happens when another developer goes through you or your team's code line-by-line and provides constructive, helpful feedback....
bottom of page