top of page
Search


C# Delegates: Func Delegate, Action Delegate and Predicate Delegate
A delegate is an object which refers to a method or you can say it is a reference type variable that can hold a reference to the methods....

The Tech Platform
Apr 5, 2022


Different Ways to Inject Dependencies in .NET Core
It is impossible nowadays to design classes/controllers which don’t depend on other objects. Rather than instantiating those objects...

The Tech Platform
Apr 5, 2022


8 Tips and Tricks for Writing the Best Queries in LINQ to Entities
LINQ is a powerful querying tool for .NET applications. There are certain techniques to follow when writing queries to make sure they run...

The Tech Platform
Apr 4, 2022


Introduction to Dependency Injection(DI)
Dependency Injection (DI) is a widely adopted design pattern that effectively reduces tight coupling between software components,...

The Tech Platform
Apr 4, 2022


Deploying a .NET dockerized application with Kubernetes
In modern application development and deployment, Kubernetes has emerged as a leading platform for orchestrating containerized...

The Tech Platform
Mar 16, 2022


Interoperability Feature in C#?
Interoperability is all about the ability of a system to communicate with components of another system. To understand it in detail, let’s...

The Tech Platform
Mar 7, 2022


Active-Passive Background Service In .Net 6
We should be able to run multiple instances on the same background service on multiple servers. At the same time, only one instance...

The Tech Platform
Mar 1, 2022


What are the Components of .NET Framework?
The .NET framework is a software development framework from Microsoft. It provides a controlled programming environment where software...

The Tech Platform
Feb 28, 2022


In-Memory Cache: Use of Memory Caching In .NET Core
What is In-Memory Caching? In-Memory Caching is a method used to provide faster response to incoming requests. When a request is made to...

The Tech Platform
Feb 28, 2022


Using RabbitMQ with multiple consumers from one .NET executable
RabbitMQ is a popular message broker that uses AMQP protocol. Helps creating and working with queues of data messages. Queues are needed...

The Tech Platform
Feb 24, 2022
bottom of page
