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


Introduction to NGXS, state management pattern + library for Angular
Ngxs is a state management pattern for the Angular framework. It acts as a single source of truth for our application. Ngxs is very...

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


Switch Statement in C#
In C#, Switch statement is a multiway branch statement. It provides an efficient way to transfer the execution to different parts of a...

The Tech Platform
Apr 4, 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


Trigger C# functions on specific intervals
Introduction Sometimes we need to perform some action on specified intervals. For example I was working on an application where I needed...

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


Sorting Tables in Angular with RxJS
First let’s get the latest Angular CLI: npm install -g @angular/cli Next we want to create a simple project to test this out in using the...

The Tech Platform
Mar 16, 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


Pattern Matching in C# for Beginners
Pattern matching in C# helps developers handle control flows with variables and types that are not linked by a hierarchy of inheritance....

The Tech Platform
Mar 10, 2022
bottom of page
