- Advanced C# Database Tricks into a Practical Solutionby John Godel on May 2, 2025 at 6:29 am
This project demonstrates an advanced C# database architecture combining EF Core, Dapper, and ADO.NET to achieve optimal performance, flexibility, and maintainability—complete with clean architecture, logging, and benchmarks.
- Advanced C# Database Tricks for Power Usersby John Godel on May 1, 2025 at 10:07 am
Explore advanced C# database techniques using ADO.NET, Entity Framework Core, and Dapper.
- Building a School Administration Solution with C# 14 and .NET 9by John Godel on May 1, 2025 at 8:25 am
Build a scalable School Administration System using C# 14 and .NET 9. Leverage features like primary constructors, minimal APIs, and performance optimizations to manage student info, attendance, grades, schedules, and more.
- Building an AI-Powered Clinical Decision Support System with C# and .NETby John Godel on April 30, 2025 at 6:53 am
This article explores integrating machine learning to assist healthcare professionals with smarter, data-driven decisions, improving patient outcomes and streamlining clinical workflows.
- Advanced C# Techniques: Multipart Uploads with AWS S3by John Godel on April 30, 2025 at 6:52 am
Learn how to efficiently upload large files to Amazon S3 using Multipart Upload in .NET (C#). Explore automation with TransferUtility, manual control, best practices, retries, and production integration tips.
- Building the Future of Healthcare with C# 14 and .NET 9by John Godel on April 30, 2025 at 6:36 am
C# 14 and .NET 9 empower modern healthcare apps with speed, AI integration, cross-platform reach, and strong security, enabling smarter diagnostics, real-time monitoring, and secure EHR systems for a connected future.
- Using C# with Azure Blob Storage: Practical Examples with the Azure SDK for .NETby John Godel on April 29, 2025 at 8:24 am
This article covers uploading, downloading, and managing blobs, making it easier to integrate cloud storage into your .NET applications efficiently and securely.
- 🔟 Things You Need to Know About C# 14by John Godel on April 28, 2025 at 8:07 am
C# 14 brings powerful new features like interceptors, type aliases, and inline arrays, helping developers write cleaner, safer, and more efficient code while boosting productivity and modern application development.
- You Need to Know 9 Things About the New Lambda Variance Rules of C#by John Godel on April 28, 2025 at 6:54 am
C# 14 introduces enhanced lambda variance rules, making lambdas more flexible, intuitive, and type-safe, empowering developers to build cleaner, reusable, and more modern C# applications effortlessly.
- Using C# with AWS S3: Practical Examples with the AWS SDK for .NETby John Godel on April 28, 2025 at 5:28 am
Learn how to use AWS S3 with C# using the AWS SDK for .NET. This guide covers setting up your project, uploading/downloading files, listing and deleting objects, and best practices for secure and efficient S3 operations.
- How to Convert a DataTable to a List of Objects in C#by John Godel on April 27, 2025 at 4:30 am
Learn how to convert a DataTable to a List<T> in C#. Explore manual, reflection-based, and LINQ methods for better performance, type safety, and cleaner code. Improve maintainability in modern C# applications.
- The Hidden Costs of Null Checks in Generic C# Codeby Shubham Sidnale on April 27, 2025 at 3:59 am
Learn how to properly perform null checks in generic C# code. Avoid hidden performance issues like boxing by using EqualityComparer<T>.Default and modern is null techniques for efficient, clean code.
- Building a User Subscription Module in ASP.NET MVC with C# 14by John Godel on April 25, 2025 at 7:19 am
Learn how to build a complete User Subscription Module in ASP.NET MVC using C# 14 features, with registration, plans, payment logic, and access control for scalable, modern subscription-based web apps.
- SQL Server CLR Integration and SSIS Automation with C#by John Godel on April 24, 2025 at 6:53 am
Learn how to enhance SQL Server functionality using CLR integration and automate SSIS packages with C#.
- Advanced Database Programming with C# 14 and Microsoft SQL Serverby John Godel on April 24, 2025 at 4:48 am
As of C# 14, Microsoft continues to evolve the language to provide more expressive, safe, and performant coding patterns.
- How to Convert a List of Objects to a DataTable in C#by Shafaet Hossain on April 23, 2025 at 6:54 am
In real-world C# applications, especially when working with data layers or exporting data (e.g., to Excel, reports, or grids), you may often need to convert a generic list of objects (List<T>) to a DataTable. This article shows you how to do that in a clean, reusable way using reflection.
- Building a Versioned REST API in C# with Swaggerby John Godel on April 23, 2025 at 6:33 am
In this article we will learn how to build a versioned REST API using C# and ASP.NET Core with Swagger support.
- Abstract Factory Pattern for Notification Services in C# 14by John Godel on April 22, 2025 at 4:34 am
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# 14by John Godel on April 21, 2025 at 5:42 am
This article covers creating flexible, maintainable code for handling multiple databases, while leveraging modern C# features for clean architecture and scalability.
- Singleton Pattern in C# 14: A Deep Dive with a Real-World Exampleby John Godel on April 21, 2025 at 4:59 am
In software architecture, there are scenarios where only a single instance of a class should exist throughout the lifetime of an application.
- 🎨 Abstract Factory Pattern in C# 14by John Godel on April 21, 2025 at 4:45 am
In modern C# development, particularly within enterprise applications, it’s common to deal with families of related objects.
- Demystifying Records in C#: Immutable Design for Modern Applicationsby John Godel on April 20, 2025 at 2:38 am
Unlock the power of C# Records! Learn how immutable design simplifies modern application development, boosts code safety, and enhances performance.
- Primary Constructors in C# 12by Ajay Kumar on April 18, 2025 at 8:38 am
Primary constructors in C# 12 simplify class and struct initialization by allowing parameters to be declared directly in the class signature. This new feature reduces boilerplate code, making object creation cleaner and more concise. Great for writing modern, readable C# code.
- Var Keyword In C#by Vo Duc Thanh on April 17, 2025 at 9:15 am
C# var keyword is used to declare implicit type variables. Let’s learn what a var is in C# and when to use a var in C#. This blog explains the C# var keyword, showcasing its use in implicit typing, arrays, ArrayList, and LINQ for flexible, type-safe, and readable code development.
- C# Singleton Pattern: One Instance to Rule Them Allby Shubham Sidnale on April 16, 2025 at 8:50 am
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.