top of page
Search


Testing file upload with Swagger in ASP.Net core
Let’s assume you have an API which is used for uploading image to the backend and you wanted to test it when the UI is still in...

The Tech Platform
Jan 25, 2022


The easiest .NET ORM framework
There are plenty of awesome ORMs out there but when it comes to the easiest to learn and use by far is Insight.Database What’s...

The Tech Platform
Jan 25, 2022


Difference between Java vs .NET. Who wins?
What is Java? Java is a programming language that is cross-platform, general-purpose, class-based, and object-oriented. Even though Java...

The Tech Platform
Jan 12, 2022


What is Span<T> in C#. How it is different from Memory<T>.
Span<T> is a value types which is an allocation-free representation of memory from different sources. Span<T> allows developers to work...

The Tech Platform
Jan 11, 2022


Audit-ability and Traceability design pattern with .Net 6, EF6, Sql server
In many industries and applications, it is important to track changes to data and maintain a history of actions taken on that data. This...

The Tech Platform
Jan 10, 2022


.NET Core 3 Source Code Scanning
Hello, in this article, I will show you how to scan an application developed with .Net Core 3 framework using Fortify. Visual Studio 2019...

The Tech Platform
Jan 10, 2022


Notification Queue : RabbitMQ in .NET Core
lets start the RabbitMQ server running in docker container. If you don’t have already, it will pull by default and command it: docker run...

The Tech Platform
Jan 9, 2022


Boost Performance in .NET App
Requests from DB can be tracked or untracked. By default, all queries that return model objects from DB are trackable. When the data...

The Tech Platform
Jan 8, 2022


.Net Development on the M1 Mac
Since .NET (Core) is cross-platform, I decided to switch things up a bit, and once Apple introduced their new in-house ARM-based silicon,...

The Tech Platform
Jan 3, 2022


Publisher/Subscriber messaging with Redis
The first thing we need to do is to create a new service that will inherit from “BackgroundService”. In this class, we must implement an...

The Tech Platform
Jan 3, 2022
bottom of page