Follow us

.Net Core Articles

.NET 8 key features and why you should upgrade to .NET 8

Microsoft recently release .NET 8 version which is LTS(long term support). This having multiple nice features which might help you in performance or security or quick & easy implementations.

.NET 7 Features - Part 2

Continuous to m previous article, this article will have many more new features and improvements Microsoft has done with .Net 7.

.NET 7 Features - Part 1

By end of this year, .Net 7 about to release and currently its under preview and there many more new features and improvements to existing features which help us in doing optimized and quality development.

CQRS Pattern With MediatR in .Net Core

CQRS(Command Query Responsibility Segregation) Pattern, where you create two different stream for data processing i.e. one for all DML i.e. data post/write actions through command and another one is DQL i.e. read/select actions which is with query.

OData (Open Data Protocol) with .Net Core

OData provides a rich query language with capabilities for sorting, filtering, querying and reducing fields in the output of the API

.Net 6 - Minimal API

Minimal API introduced with .net 6 and this is very good in sense of "best suited for micro services to put your related endpoints in project", "Less no. of lines of codes to write to create endpoint", "Single file API, to put all endpoints related".

Visual Studio 2022 & .Net 6.0 Features

This article will explain some of great Visual Studio 2022 and .Net 6.0 including C# 10 features which definitely will love by all the developers.

Dotnet dump analysis (performance monitoring of your app)

Many times we had situations where your production app having performance issue but we are not sure where is the performance problem area in code, so by analyzing dump file, you can easily figure out that problem code area can fix that.

.Net 6.0 & Visual Studio 2022 Preview

.Net 6.0 & Visual Studio 2022 Preview key points which are coming up for us. Many great and exciting improvements and features which help us in day to day work going forward.

Conditional Serialization of Api Response Fields

Return only customer specific fields to API response instead of returning all all the fields even those are not require for the customer to use/consume.

Visual Studio Profiling Tool

Visual Studio Profiling Tool, enable you to identify CPU utilization, database query performance, C# async method profiling etc.

.Net 5.0 or C# 9.0 - Preview

.Net 5.0 or C# 9.0 - Preview

Microservices Event Driven Architecture

Microservices Event Driven Architecture, where using AWS SNS and SQS created ESB(message bus) publisher and subscriber to publish and listen the even and get microservice executed and rollback if fail.

Fault Tolerance (handle fault exception)

Fault Tolerance (handle fault exception)

Design Scalable C# Code/Application

Design Scalable C# Code/Application

C# 8.0 New Features

C# 8.0 New Features : Which will help you to write efficient and less no. of coding to achieve more

.Net core API - JWT Token Authentication

Authenticate your .net core API with JWT token and use claim as well as per your need.