top of page
Search


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


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


What are Closures in C#?
A closure is a type of function that is tied to the code that defines it. This enables closure functions to use variables from the...

The Tech Platform
Jan 8, 2022


Entity Framework Performance Tips & Tricks
In this article we’ll go through simple things to keep in mind while using Entity Framework to improve the performance of our code....

The Tech Platform
Dec 30, 2021


How to create Singleton for a class without modifying in C#
When I ask people to create singleton class they would happily create with following implementation. class SecuritySingleton { public...

The Tech Platform
Dec 27, 2021


Converting DateOnly and TimeOnly to DateTime and vice versa in .NET 6
How DateOnly and TimeOnly can be used with legacy application where DateTime is already used? How can we migrate to use this ? How do we...

The Tech Platform
Dec 22, 2021


Middleware and Filters power in ASP.NET Core
In ASP.NET core, Middleware and Filters are two concepts which are very useful & powerful but often confuses also on which one to choose....

The Tech Platform
Dec 18, 2021


Generate a TypeScript client from .NET 6 Web API
.NET 6 is a cross-platform, open-source framework developed by Microsoft for building modern applications. One of its key features is the...

The Tech Platform
Dec 16, 2021


what is Stack and Queue in C#?
Stack Stack class represents a last-in, first out collection of object. It is used when you need a last-in, first-out access of items....

The Tech Platform
Dec 9, 2021


How to write URL shortener in .NET5?
In this series we will try to show you how easy it is to write a service that shortens URLs with .NET5. On top of that, we will add an...

The Tech Platform
Dec 9, 2021
bottom of page
