C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mominul Islam(11)
John Godel(11)
Dashrath Hapani(7)
Sandhiya Priya(5)
Ck Nitin(4)
Rajesh Gami(3)
Tuhin Paul(3)
Ziggy Rafiq(3)
Manav Pandya(3)
Vishal Yelve(3)
Tharunkumar Magudeeswaran(3)
Deepika Sawant(2)
Shubham Sidnale(2)
Baibhav Kumar(2)
Sangeetha S(2)
Oguzhan Agir(1)
Farrukh Rehman(1)
Amit Kumar(1)
Naresh Kumar Katta(1)
Patrick Kearns(1)
Akshay Amin(1)
Rikam Palkar(1)
Abhishek Yadav(1)
Rahul Sen(1)
Rudra Singh(1)
Manoj Tyagi(1)
Mariem Moalla(1)
Sardar Mudassar Ali Khan (1)
Aarav Patel(1)
Jay Krishna Reddy (1)
Howher Michael(1)
Ananya Desai(1)
Gourav Jain(1)
Malintha Wijewardana(1)
Manoj marmat(1)
Nitin (1)
Arnab Das(1)
Bimalshi Jayarathna(1)
Mahesh Chand(1)
Amit Mohanty(1)
Gautam Singh(1)
Bhawna Vishwakarma (1)
Vijay Kumari(1)
Sagar Rane(1)
Mark Pelf(1)
Afsar Uddin(1)
Allen Oneill(1)
Nandan Hegde(1)
Rijwan Ansari(1)
saswata s(1)
Mohammad Hasan Hosseini(1)
Resources
No resource found
Beyond Basics: Mastering Advanced Dependency Injection Patterns in ASP.NET Core
Nov 10, 2025.
Master advanced Dependency Injection (DI) patterns in ASP.NET Core. Learn module-based DI, decorators, open generics, and runtime service replacement for scalable apps.
Design Patterns for High Availability and Disaster Recovery in SQL Server
Nov 05, 2025.
Explore SQL Server high availability (HA) and disaster recovery (DR) design patterns: Always On, Failover Clusters, Log Shipping, and Geo-Replication. Ensure business continuity!
Dynamic Stored Procedure Mapping Using Reflection in Repository Pattern
Nov 03, 2025.
Dynamically map stored procedures to C# models using Reflection within the Repository Pattern. Reduce boilerplate code, improve maintainability, and achieve clean architecture. Automate parameter mapping and result conversion for scalable database access.
The ASP.NET Core Dependency Injection System (with .NET 9 Patterns & Pitfalls)
Nov 03, 2025.
Practical guide to ASP.NET Core DI: lifetimes, constructor vs. property injection, Options, TryAdd, avoiding captive deps, IServiceScopeFactory, IAsyncDisposable, and .NET 9 AOT.
🧱 Lesson 2C - Implementing Repository Interfaces (Domain & Infrastructure Layers)
Oct 31, 2025.
Learn how to implement repository interfaces in .NET using Clean Architecture! This tutorial covers domain & infrastructure layers for robust data access. Build production-ready apps!
AI in Manufacturing: Boosting Efficiency and Reducing Waste
Oct 30, 2025.
Explore how AI is revolutionizing manufacturing! From predictive maintenance to smart robotics, discover how AI boosts efficiency, reduces waste, and drives Industry 4.0.
Saga Pattern in C#: Reliable Transaction Orchestration Example
Oct 29, 2025.
Implement the Saga Pattern in C# for reliable transaction orchestration across microservices. Learn to manage complex workflows and ensure data consistency.
Difference Between Abstract Class and Interface in C#
Oct 29, 2025.
Understand the core differences between abstract classes and interfaces in C# with a practical Windows Forms example. Learn when to use each for better design.
Print Right Triangle Star Pattern using C# in ASP.NET WebForms
Oct 29, 2025.
Learn to print a right triangle star pattern in C# ASP.NET WebForms using Visual Studio 2015. This tutorial covers nested loops, StringBuilder, and dynamic HTML output for beginners.
Print Pyramid Star Pattern using C# in ASP.NET WebForms
Oct 29, 2025.
Learn to create a Pyramid Star Pattern in C# ASP.NET WebForms using nested loops and StringBuilder. A great exercise for mastering logic and HTML rendering!
Print Diamond Star Pattern in C# using ASP.NET WebForms
Oct 29, 2025.
Learn to create a Diamond Star Pattern in C# using ASP.NET WebForms! This tutorial covers nested loops, StringBuilder, and HTML encoding for dynamic pattern generation. Perfect for beginners!
Print Number Triangle Pattern in C# using ASP.NET WebForms
Oct 29, 2025.
Learn to create a Number Triangle Pattern in C# WebForms using nested loops! This tutorial provides a real-time example with ASPX code and explanation. Perfect for beginners!
Composition Over Inheritance: Building Flexible C# Applications
Oct 26, 2025.
Master Composition Over Inheritance in C#! Build flexible, maintainable C# applications by favoring 'has-a' over 'is-a' relationships. Real-world examples included!
The REPR Pattern with Fast Endpoints in Modern .Net
Oct 25, 2025.
REPR (Request-Entity-Processor-Response) is a .NET pattern for building scalable, maintainable systems. It promotes clear intent, domain-centric logic, and thin HTTP adapters.
Chapter 12: Polymorphism: Virtual Functions and Abstract Classes in C++
Oct 23, 2025.
Learn about virtual functions, the 'virtual' keyword, and how it facilitates runtime method resolution. Discover abstract classes and pure virtual functions for defining interfaces and ensuring derived class implementation. Understand the importance of virtual destructors for proper memory management in polymorphic hierarchies.
Understanding Advanced Patterns of useState in React
Oct 23, 2025.
Delve deeper into React's useState hook! This guide explores advanced patterns like lazy initialization, object state management (spreading!), and avoiding common pitfalls such as incorrect updates and using useState in loops. Understand how React optimizes state updates and ensures efficient re-renders. Master useState for robust and performant React components. Learn how to initialize state only once and the importance of using functional updates.
Master Repository & Unit of Work Patterns in ASP.NET Core (Part-37 of 40)
Oct 22, 2025.
Build testable, maintainable, and scalable data access layers for your applications. This comprehensive guide provides real-world examples, production-ready code, and best practices for implementing these robust patterns. Learn to avoid common pitfalls and optimize performance for enterprise applications.
ASP.NET Core Razor Pages Mastery: Advanced UI Patterns, Real-World Examples & Performance Optimization(Part-21 of 40)
Oct 21, 2025.
Master UI development patterns, data binding, and handler methods. Explore real-world e-commerce examples, performance optimization, and best practices. Part 21 of a 40-part series, this module delivers a breakthrough in simplifying web development. Dive into page models, validation, and more to build high-performance web applications.
ASP.NET Core Caching Mastery: Redis, Memory Cache, Distributed Patterns & Performance Optimization (Part - 27 of 40)
Oct 21, 2025.
Master ASP.NET Core caching with this comprehensive guide! Explore Redis, memory caching, and distributed patterns for building high-performance applications. Learn real-world strategies, optimization techniques, and best practices to drastically improve response times and reduce database load. Includes code examples and performance monitoring tips.
ASP.NET Core Architecture Patterns: CQRS, DDD, Clean Architecture Mastery (Part -19 of 40)
Oct 20, 2025.
Master ASP.NET Core architecture with this comprehensive guide! Explore CQRS, DDD, and Clean Architecture to build scalable, maintainable enterprise systems. Learn through real-world e-commerce examples, testing strategies, and best practices. Elevate your skills and design resilient applications using modern patterns. Part 19 of a 40-part series.
ASP.NET Core Design Patterns Revolution: Repository, Singleton & Clean Architecture (Part-18 of 40)
Oct 20, 2025.
Unlock the power of design patterns in ASP.NET Core! Master Repository, Singleton, Factory, Strategy, and more to build scalable, maintainable, and testable applications. Learn through real-world examples, understand performance considerations, and avoid common anti-patterns. Elevate your .NET 8 development skills and create robust, clean architecture.
An Introduction to Data Analytics in Microsoft Azure
Oct 18, 2025.
Unlock the power of data with Azure Data Analytics! This article introduces Microsoft Azure's comprehensive suite of services for data ingestion, storage, processing, and visualization. Discover how Azure Synapse, Data Lake Storage, Data Factory, Databricks, Power BI, and Stream Analytics empower organizations to gain actionable insights, improve decision-making, and drive innovation at scale. Learn about strategic benefits like scalability, security, and cost efficiency.
Workflow Patterns in Azure Durable Functions: Fan-out/Fan-in, Chaining, and the Orchestrator’s Role
Oct 18, 2025.
Explore Azure Durable Functions and unlock the power of serverless workflows! Learn how to implement Chaining and Fan-out/Fan-in patterns for building resilient and scalable applications. Discover the Orchestrator's crucial role in managing state and coordinating complex processes like global e-commerce order fulfillment. Master best practices for enterprise-grade workflows and optimize your Azure solutions for performance and reliability.
C# 12 Features Mastery Part 4 - Primary Constructors, Records, Pattern Matching for ASP.NET Core
Oct 15, 2025.
Master C# 12's essential features for ASP.NET Core development! Part 4 dives into primary constructors (reducing boilerplate), records (immutable data), advanced pattern matching (smarter code flow), and collection expressions (simplified collections). Learn real-world integration, performance optimization, and migration strategies for modern, efficient ASP.NET Core applications. Unlock the power of C# 12!
The Illusion of Memory: How Azure Durable Functions Preserve State Across Replays in Airline Disruption Management
Oct 15, 2025.
Discover how Azure Durable Functions tackle complex, stateful workflows like airline rebooking using the orchestrator pattern. Learn how deterministic replay and durable storage create the illusion of persistent memory, ensuring fault tolerance and scalability. Explore a real-world example of managing flight disruptions and enterprise-grade design principles for building resilient serverless applications that survive chaos and never lose state.
ASP.NET Core MVC Deep Dive Part 5 - Advanced Controllers, Routing, Views & Enterprise Patterns
Oct 15, 2025.
Dive deep into ASP.NET Core MVC Models! This comprehensive guide covers model creation, data binding, validation using data annotations, and advanced techniques like custom validation and ViewModels. Learn to build robust and secure applications by mastering data integrity. Explore best practices, alternatives like FluentValidation, and prepare for Part 6: Controllers.
Learn the Builder Pattern in C#
Oct 15, 2025.
This article provides a comprehensive guide, explaining when and how to use this creational design pattern to simplify complex object construction. Explore classic and fluent builder implementations, complete with code snippets for building a house and a person. Learn to avoid telescoping constructors, improve code readability, and encapsulate construction logic for robust and maintainable C# applications.
Orchestrator Resilience and Pattern Selection in Global Supply Chain Disruptions - Azure Durable Function
Oct 15, 2025.
Learn how to build resilient serverless workflows with Azure Durable Functions to handle global supply chain disruptions. This article explores orchestrator patterns like fan-out/fan-in and chaining, using a real-world Suez Canal crisis scenario. Discover how to design for failure, implement retry policies, and ensure your orchestrations adapt and recover, guaranteeing business continuity even in the face of unexpected events.
🌀 Saga Design Pattern (Choreography Style) Cheat Sheet
Oct 14, 2025.
Master the Saga Design Pattern (Choreography style) with this cheat sheet! Learn how to implement distributed transactions using event-driven architecture. Explore the benefits of loose coupling and decentralized control in microservices. Includes a C# example demonstrating an order workflow with compensating transactions for rollbacks. Ideal for interviews and real-world applications like food delivery apps.
🌀 Saga Design Pattern - Orchestration Saga – Cheat Sheet
Oct 14, 2025.
Master the Orchestration Saga pattern for microservices! This cheat sheet explains how to maintain data consistency across distributed systems without 2PC. Learn to break down long transactions into smaller, manageable steps with compensating actions for rollbacks. Includes a C# example and real-world flight booking scenario. Ace your next interview by understanding the 'do + undo' principle and the difference between Orchestration and Choreography Sagas.
Static Class vs Singleton Pattern 🔄
Oct 14, 2025.
Explore the nuances between Static Classes and the Singleton Pattern in C#. This article provides a detailed comparison, covering memory usage, performance, inheritance, thread safety, testing, and practical use cases. Learn when to choose a static class for utility functions or a singleton for managing shared resources. Discover best practices and common pitfalls to avoid in your C# development.
SOLID Principles Cheat Sheet 🚀
Oct 14, 2025.
Master the SOLID principles of object-oriented design with this cheat sheet! Learn Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion principles. Improve code maintainability, testability, and scalability. Includes clear explanations, bad/good examples, and memory tips for each principle. Boost your software architecture skills!
OOP is NOT Just Theory! Real-World Blueprints for Building Scalable Software Empires
Oct 08, 2025.
Unlock the power of Object-Oriented Programming (OOP) to build scalable software empires! Demystify OOP's core principles (Class/Object, Encapsulation, Inheritance, Polymorphism, Abstraction) with real-world examples from Netflix, bKash, and more. Learn how OOP drives maintainability, security, and efficiency in modern applications, including ERPs and AI-driven systems. Master OOP and cut development time by 40%!
Software Architecture: Blueprint for Scalable Digital Success
Oct 08, 2025.
Navigate the software architecture landscape of 2025! This guide provides a blueprint for scalable digital success, covering 7 essential patterns: MVC, Layered, Microservices, Event-Driven, DI, CQRS, and Event Sourcing. Learn with real-world examples from global giants to emerging markets, plus a quiz to find your architectural fit. Build resilient, future-proof systems!
Repository Pattern Over EF: Boon or Burden?
Oct 07, 2025.
Explore the Repository Pattern with Entity Framework in .NET. This article dives into whether wrapping EF with a repository is a boon or burden, covering Unit of Work, generic repositories, read/write separation, and the Specification Pattern. Learn how to build maintainable, testable, and scalable applications by decoupling domain logic from data access, ensuring cleaner code and controlled database interactions. Discover best practices for query optimization and transaction management.
A New Era of Developer Productivity with Vibe Coding with C# 13
Oct 06, 2025.
C# 13 and vibe coding revolutionize developer productivity by reducing boilerplate, simplifying patterns, and promoting clean architecture. Learn how primary constructors, pattern matching, interceptors, and async streams enhance code clarity and maintainability. Discover best practices for a more intuitive and efficient development process, focusing on flow, clarity, and joy in coding.
How to Build Scalable Component Architectures in React
Oct 06, 2025.
Learn how to build scalable React component architectures that grow with your application. Discover core principles like single responsibility and unidirectional data flow. Explore project structure, component patterns (Presentational/Container, Hooks, Compound Components), state management strategies (local vs. global, Context API, server state), and performance optimization techniques (memoization, lazy loading). Build robust and maintainable React apps!
C# 14 Extension Members: A Deep Dive Into Power, Patterns, and Pitfalls
Oct 01, 2025.
C# 14 introduces extension members, expanding the capabilities of extension methods to include properties, indexers, operators, and events. This feature enhances API design by allowing developers to enrich existing types without modification, leading to cleaner code, improved modularity, and better interoperability. Learn how to leverage extension members for more expressive and maintainable code.
SOLID Principles Explained: Enhance Your C# Skills with Practical Examples
Sep 29, 2025.
Master the SOLID principles in C# with practical examples! Learn how Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion enhance code maintainability, scalability, and testability. Elevate your C# skills and write cleaner, more robust object-oriented applications. Discover how to avoid common pitfalls and build a solid foundation for future development. Get ready to explore Dependency Injection in our next article!
GoF Design Patterns C# (23)
Sep 25, 2025.
Explore all 23 Gang of Four (GoF) design patterns implemented in C#. This comprehensive guide provides clear, concise code examples for each pattern, covering creational, structural, and behavioral categories. Learn how to apply Singleton, Factory, Adapter, Observer, and more to build robust, maintainable, and scalable applications. Master object-oriented design principles and improve your C# development skills with these practical examples.
All you need to know about switch expression and Modern Pattern Matching
Sep 22, 2025.
Explore the evolution of the C# switch statement from its traditional constant-based form to the powerful pattern matching capabilities of modern C#. This article covers type patterns, relational patterns, positional patterns, and switch expressions introduced in C# 7.0 and later. Learn how to leverage these features for cleaner, more expressive code and improved conditional logic.
Artificial Intelligence - First Prompting for Cybersecurity: CoT, ToT, ReAct, RAG, and GSCP—Incident-Ready Patterns
Sep 15, 2025.
Operationalize AI in cybersecurity with incident-ready prompt engineering patterns. Learn to classify alerts (CoT), explore containment (ToT), gather evidence (ReAct), ground answers in policy (RAG), and govern high-risk actions (GSCP). Enhance security workflows with auditable, safe AI-driven decisions. Transform telemetry into action!
API Gateway Security Patterns for ASP.NET Core Microservices
Sep 15, 2025.
This article explores authentication, authorization, rate limiting, and input validation techniques using Ocelot, YARP, and cloud solutions like Azure API Management. Centralize security, reduce attack surface, and improve resilience with best practices for JWT, OAuth2, TLS/HTTPS, and centralized logging. Implement a zero-trust approach for robust protection.
Cost-Effective Prompt Engineering with Zero-, One-, and Few-Shot Patterns
Sep 07, 2025.
Optimize prompt engineering for cost-effectiveness! This guide details zero-shot, one-shot, and few-shot learning patterns, showing when each saves money. Learn to minimize token usage, use strict schemas, and verify outputs cheaply. Master practical tricks for stable, budget-friendly results with LLMs.
Using React with TypeScript – Common Patterns Every Developer Should Know
Sep 05, 2025.
TypeScript adds static typing to JavaScript, which means you catch errors earlier, improve editor autocomplete, and make your codebase easier to maintain. When combined with React, TypeScript can significantly improve how you work with components, state, and props.
What Is MVC in Web Development
Sep 04, 2025.
Unlock the power of MVC (Model-View-Controller) in web development! This guide breaks down the MVC architecture, explaining how it separates data (Model), presentation (View), and control (Controller) for cleaner, more maintainable, and scalable applications. Discover the benefits, limitations, and real-world examples of MVC frameworks like ASP.NET MVC, Spring MVC, and more. Master this essential pattern for building robust web applications.
Artificial Intelligence: AI-First Data Modeling for Manufacturing. From BOMs to Intelligent, Self-Optimizing Factories Executive Summary
Sep 03, 2025.
Reimagine manufacturing with an AI-first data model! Transform classic BOMs into intelligent, self-optimizing factories. This article details a blueprint where data fuels AI, driving improvements in yield, OEE, and margin. Learn about lakehouse architecture, digital twins, and LLM integration for governed, explainable AI in manufacturing.
Find vs GetBy in Entity Framework: Understanding the Right Approach
Aug 31, 2025.
Unlock EF Core efficiency! Compare Find() (primary key, cached) vs. GetBy() (flexible, direct DB query). Learn performance, usage, and error handling for optimal data access.
CQRS ≠ MediatR
Aug 25, 2025.
Demystifying CQRS and MediatR in .NET! Learn the difference between Command Query Responsibility Segregation and MediatR, with practical examples. Use them right!
Master Software Design Patterns: Complete Course Outline (.NET & Java)
Aug 22, 2025.
Learn software design patterns from basics to advanced. Build scalable, maintainable .NET & Java applications using latest patterns.
C# Memory Leak
Aug 21, 2025.
Learn how to prevent memory leaks in C# caused by static event handlers. This guide explains IDisposable, SafeSubscriber, and best practices for managing event subscriptions and garbage collection in .NET.
What are abstract classes, and how do you use them in Python?
Aug 21, 2025.
Abstract classes are a key concept in object-oriented programming (OOP) that provide a way to define a blueprint for other classes. They help enforce rules, ensuring that child classes implement specific methods. This article explains what abstract classes are, how they work in Python, and how to use them with examples.
What are Common Design Patterns in Node.js (Module, Singleton, Factory, etc.)
Aug 18, 2025.
This article explains the most commonly used design patterns in Node.js, such as Module, Singleton, Factory, and others. Each concept is explained in simple words with code examples to help you understand where and how to use them.
SQL Server CLR Integration: Development, Deployment, Security, Architecture, Patterns, and Real-World Use Cases
Aug 11, 2025.
Explore SQL Server CLR Integration’s power to bridge .NET and relational databases. Learn best practices, security, and real-world use cases to build scalable, secure, high-performance data-driven applications across diverse industries.
Best Practice to Make Your Project Cleaner in .NET
Aug 09, 2025.
Discover the best practices to keep your .NET projects clean, maintainable, and efficient. Learn tips for organizing code, improving readability, and boosting performance.
GenAI Explained: How Does It Actually Work? - Part 2
Aug 08, 2025.
Generative AI creates text, images, audio, and more by learning patterns from vast data. It powers tools like ChatGPT, DALL·E, and Midjourney, transforming creativity, productivity, and problem-solving across industries.
Unlocking the Power of Software Design Patterns
Aug 08, 2025.
Explore how software design patterns offer proven, reusable solutions to common development challenges. Learn their types, benefits, and real-world applications to build scalable, maintainable, and efficient software systems.
Difference between interface and abstract class?
Aug 07, 2025.
Learn the fundamental differences between interfaces and abstract classes in C#. This article breaks down their key characteristics, use cases, and performance implications with code examples. Ideal for developers and interview preparation.
ETL Design Pattern to Implement SCD Type 2 Using SQL, SSIS, or dbt
Jul 30, 2025.
SCD Type 2 is widely used in data warehousing to preserve full history of dimensional changes. Implementing it correctly through your ETL process is crucial for accurate historical reporting.
Designing a Scalable Schema in MongoDB: Real-World Patterns That Actually Work
Jul 21, 2025.
MongoDB gives you freedom, but that freedom comes with tradeoffs. Schema design in MongoDB isn’t about a strict structure. It’s about smart structure, based on how your app behaves.
Modern MediatR Library in .NET Core 9.0
Jul 10, 2025.
Modern MediatR Library in .NET Core
🍁Mastering SOLID Principles in Real-World .NET Projects
Jul 07, 2025.
Learn SOLID principles in C# with real-world .NET examples. Master SRP, OCP, LSP, ISP, and DIP to write clean, testable, and scalable code using interfaces, patterns, and best practices for enterprise apps.
Difference Between Abstract Class and Normal Class in C#
Jul 04, 2025.
The difference between Abstract Class and a Normal Class in C#, including definitions, concepts, use cases, and examples.
Webhook pattern for an Azure Logic App
Jul 01, 2025.
This article describes how we can use asynchronous request reply pattern, webhook pattern with logic app to resolve timeout related issues during large data processing.
Page Object Model Design Pattern: Benefits and Implementation
Jun 30, 2025.
The Page Object Model (POM) design pattern in Selenium improves test automation by separating UI structure from test logic, ensuring maintainability, reusability, readability, and scalability for growing web applications.
Automating Azure Analysis Services (AAS) Firewall Whitelisting Using Azure Data Factory
Jun 30, 2025.
This article explains how to automate IP whitelisting in Azure Analysis Services (AAS) using Azure Data Factory (ADF). It covers dynamic firewall rule management using a configuration-driven pipeline, secured with Managed Identity and REST API integration.
Types of Classes in C# with Examples | Concrete, Static, Abstract, Sealed, and More
Jun 12, 2025.
Learn all the types of classes in C# with clear examples and use cases. Understand when to use abstract, static, sealed, generic, and partial classes in .NET Framework.
What is Singleton Design Pattern With Real Time Example in C#
Jun 12, 2025.
Learn how the Singleton Design Pattern works in C# with a real-time example. Understand its use in controlling object creation, ensuring only one instance exists for global access and efficiency.
Mastering the Factory Pattern in C# 13: Best Practices with Real-World Examples
Jun 08, 2025.
With this best practices guide by Ziggy Rafiq, you will learn Factory Pattern in C# 13 with clean architecture, DI, and testable design.
Building a Clean ASP.NET Core API with C# 13, EF Core, and DDD
Jun 02, 2025.
The guide is written by Ziggy Rafiq and follows real-world architecture and testing best practices to provide a clean, scalable REST API using ASP.NET Core, C# 13, EF Core, and MS SQL.
Event-Driven CQRS with C# 14 and the SQL Outbox Pattern
May 15, 2025.
Learn how to implement a reliable event-driven CQRS microservice using the SQL Outbox Pattern with C# 14. Ensure strong consistency, transactional event publishing, and fail-safe asynchronous processing for scalable distributed systems.
How to Set Up Avalanche Blockchain on Devnet & Transfer Tokens
May 12, 2025.
This article covers the setup of the Avalanche blockchain on DevNet, including installing tools like Docker, Avalanche CLI, and Hardhat. It walks through deploying an ERC-20 token smart contract and transferring tokens between wallets.2/2
Applying the Saga Pattern for Distributed Transactions Across Services Using C# Examples
May 07, 2025.
The Saga pattern in microservices helps manage distributed transactions by breaking them into local transactions with compensating actions. It ensures data consistency and handles failures through choreography or orchestration.
Build a CRUD App in .NET 8 MVC Using Dapper and Repository Pattern
May 06, 2025.
Learn to build a CRUD app in .NET 8 MVC using Dapper for lightweight data access and the Repository Pattern for clean code architecture.
Abstract Factory Pattern for Notification Services in C# 14
Apr 22, 2025.
Discover how to use the Abstract Factory Pattern in C# 14 to build a flexible, provider-agnostic notification system.
Abstract Factory Pattern for Database Access in C# 14
Apr 21, 2025.
This article covers creating flexible, maintainable code for handling multiple databases, while leveraging modern C# features for clean architecture and scalability.
🎨 Abstract Factory Pattern in C# 14
Apr 21, 2025.
In modern C# development, particularly within enterprise applications, it’s common to deal with families of related objects.
Singleton Pattern in C# 14: A Deep Dive with a Real-World Example
Apr 21, 2025.
In software architecture, there are scenarios where only a single instance of a class should exist throughout the lifetime of an application.
What is New in JDK 24?
Apr 18, 2025.
JDK 24 introduces preview features like unnamed variables, pattern matching for primitives, string templates, and performance boosts, enhancing Java's productivity, readability, and native integration for modern development.
Advanced Configuration in .NET Core
Apr 17, 2025.
.NET Core provides various configuration sources like appsettings.json, environment variables, and Azure Key Vault. You can use strongly typed configuration with IOptions, validate options, enable hot reload, and manage secrets securely for app development.
C# Singleton Pattern: One Instance to Rule Them All
Apr 16, 2025.
The Singleton Design Pattern in C# ensures only one instance of a class exists and provides a global access point. It's ideal for managing shared resources like logging, configuration, or database connections.
Django Web framework Google Chart Example
Apr 14, 2025.
Django, a Python web framework using the MVT pattern, simplifies web development with built-in admin, structured views, and templates—demonstrated using a Google Charts example for dynamic data visualization.
Introduction to Event Driven Architecture [EDA]
Apr 15, 2025.
Event-driven architecture (EDA) is a software design pattern where decoupled components communicate via events. It enables real-time, scalable, and flexible systems, commonly used in microservices, IoT, payment processing, and real-time analytics.
.NET 8 - System.Linq.Dynamic.Core – using SQL LIKE
Apr 11, 2025.
System.Linq.Dynamic.Core library does not support SQL LIKE, and I added support for it. Added SQL LIKE support to the System.Linq.Dynamic.Core in .NET 8 using a custom patch. Enables dynamic SQL pattern matching in EF8 projects where built-in LIKE functionality was missing.
Open/Closed Principle (OCP)
Apr 08, 2025.
The Open/Closed Principle encourages extending software functionality without modifying existing code. It enhances flexibility, reduces bugs, and promotes maintainability by using interfaces and polymorphism for scalable, change-resilient design.
Liskov Substitution Principle (LSP)
Apr 07, 2025.
Understand the Liskov Substitution Principle (LSP), a key SOLID principle that ensures subclasses can replace base classes without errors, promoting reliable inheritance, clean abstraction, and maintainable object-oriented design.
Mastering SOLID Principles in Software Design
Apr 06, 2025.
The SOLID principles are five key object-oriented design guidelines—Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion—aimed at writing clean, maintainable, and scalable software systems.
Understanding AI: A Beginner's Guide
Apr 04, 2025.
Artificial Intelligence (AI) simulates human intelligence in machines to perform tasks like pattern recognition, decision-making, and learning from data. It powers apps like recommendations, predictions, and automation.
What is Monolithic Architecture
Apr 01, 2025.
Monolithic architecture is a software design pattern where the entire application is built as a single unit. It offers advantages like easier development and deployment but faces challenges in scalability and maintenance as applications grow.
Decorator Design Pattern ( Singleton Design Pattern)
Mar 28, 2025.
This article explains the Decorator Design Pattern in C#, demonstrating how to dynamically add functionalities to objects without modifying their structure. It includes real-world examples, implementation steps, and code samples.
Advanced APIs with ASP.NET Core: Middleware, EF Core, and Versioning
Mar 28, 2025.
Learn how to build advanced APIs with ASP.NET Core using middleware, Entity Framework Core (EF Core), and API versioning. This guide covers request handling, database management with EF Core, and implementing versioning strategies for scalable and maintainable APIs.
China’s AI Renaissance: From Factory Floor to Global Powerhouse
Mar 25, 2025.
China's AI rise, fueled by strategic investment and a vast data ecosystem, is reshaping global tech dynamics. Western companies must adapt to this evolving landscape.
Trigger Fabric Data Pipeline from ADF/Synapse via Managed Identity
Mar 24, 2025.
Learn how to trigger a Fabric Data Pipeline from Azure Data Factory or Synapse Pipeline using Managed Identity for secure authentication.
Automating SCD Type 4 in Azure SQL Database with Azure Data Factory
Mar 24, 2025.
Learn how to automate Slowly Changing Dimension (SCD) Type 4 implementation in Azure SQL Database using Azure Data Factory.
Learn C#: Refactor Code
Mar 18, 2025.
Refactoring in C# enhances code readability, maintainability, and performance by eliminating redundancy, utilizing LINQ, extracting methods, applying null-coalescing operators, and implementing async/await patterns.
Dynamic Database Web API in .NET 9: Clean Architecture & MediatR for Flexibility
Mar 17, 2025.
A Web API should support multiple database options such as SQL Server, PostgreSQL, MySQL, and SQLite without major code changes. In this article, we will build a .NET 9 Web API using Clean Architecture, Domain-Driven Design (DDD), and MediatR, while implementing dynamic database selection using Entity Framework Core (EF Core).
Understanding IT Solution Architecture
Mar 12, 2025.
Solution architecture is focused mainly on the understanding of the business requirements and based on that need to design the project. Solutions should be designed in a way that it will be easy for maintenance and updates.
Domain Events & Pub/Sub Pattern: Manual Implementation vs MediatR
Feb 27, 2025.
Domain events and the publish/subscribe pattern are essential for building decoupled, scalable, and maintainable systems. Whether we're working on a microservices architecture or a modular monolith, these patterns help us manage complexity and enforce boundaries between components.
Create Storage Account and Move Files Using ADF Activity
Feb 17, 2025.
Learn how to create an Azure Storage Account, set up Azure Data Factory (ADF), and efficiently move files between folders using ADF activities.
Understanding Bridge Design Pattern
Feb 13, 2025.
This article explains its benefits, use cases, and implementation in C# with a real-world message-sending example using SmsMessageSender and EmailMessageSender.