C# 14, agentic AI and ASP.NET Core binding
A varied .NET roundup with C# 14, agentic AI, ASP.NET Core binding, EF Core architecture, testing automation, and resiliency patterns.
Jasen's top three picks
- 1 The best new features of C# 14
news.google.com
A good snapshot of what changed in C# 14 and why it matters in day-to-day coding.
- 2 Dealing with DB Null: Solving the Object cannot be cast from DB Null to other types Error in C#
c-sharpcorner.com
Practical resilience guidance with Polly bulkheads for services that need to fail gracefully.
- 3 How to Reverse a String in C#
c-sharpcorner.com
Useful if you want a clearer mental model for assemblies, DLLs, and strong naming.
Editor's note
I kept this issue intentionally mixed: language updates, app architecture, data access, and a good slice of AI work. The C# 14 rundown is the obvious headline, but I also think the bulkhead pattern piece and the EF Core clean-architecture article are especially practical for teams shipping real systems.
Today's articles
The best new features of C# 14
news.google.com
The best new features of C# 14
Read articleDealing with DB Null: Solving the Object cannot be cast from DB Null to other types Error in C#
c-sharpcorner.com
Safely handle DBNull values in C# when querying databases like Oracle or SQL Server. Prevent InvalidCastExceptions with practical examples and extension methods.
Topics: C# SQL Server
Read articleHow to Reverse a String in C#
c-sharpcorner.com
Learn two efficient methods to reverse strings in C# using Array.Reverse() and loops. Understand the immutability of strings, performance considerations, and real-world applications. Master this funda...
Topics: C# Performance
Read articleThe Sinking Ship: Protecting .NET Microservices with the Bulkhead Pattern
devblogs.microsoft.com
A practical guide to isolating resources and preventing cascading failures in distributed systems using Polly.
Topics: Design Patterns Performance
Read articleUnderstanding Assemblies in .NET: Concepts Every Developer Should Know
medium.com
When working with .NET, terms like DLL, assembly, NuGet, and strong naming often get used interchangeably — sometimes incorrectly. Behind…
Topics: .NET Core .NET Framework
Read articlePowering the New Microsoft Agent Framework with Gemini 3.x
medium.com
How to bring Google’s latest models into the new .NET Agentic ecosystem Continue reading on Google Cloud - Community »
Read articleAgentic RAG for Everyone Using Azure SQL, OpenAI, and Web Apps
youtube.com
How to Use Dependency Injection in a .NET Console Application
Read articleThe Diamond Problem and Why Interfaces are the Solution
medium.com
Object-oriented programming is full of elegant ideas… and subtle traps. One of the most famous is the Diamond Problem, a classic ambiguity…
Topics: C# Design Patterns
Read articleFrom Spaghetti to Clean Architecture: How to Decouple EF Core without Over-Engineering
medium.com
Let’s be honest. We all love the idea of greenfield projects. But in the real world, the most impactful engineering work happens in the…
Topics: Clean Architecture EF Core
Read articleBinding Sources in ASP .NET Core
benedictodoh.medium.com
In ASP.NET Core, binding sources are attributes that tell the framework exactly where to retrieve data from within an HTTP request. When a…
Topics: ASP.NET Core Web API
Read articleThe End of Boilerplate: How Visual Studio 2026 is Automating the Testing Lifecycle
medium.com
The latest February update for Visual Studio 2026 has introduced a feature that might finally kill the "testing debt" in most repositories…
Topics: Unit Testing Visual Studio
Read articleHTTP Retries Done Right: The Factory Pattern
medium.com
The Problem with Naive Retries
Topics: Design Patterns Performance
Read articleSmarter Queries Start Here: Vector Search in SQL Server & Azure SQL DB
youtube.com
How to Crop and Compress Images in PowerPoint Using C#
Topics: Azure SQL Server
Read articleHow to Classify Documents using AI in C#/.NET
cloudmersive.medium.com
Upload portals for document automation pipelines are usually limited by input document classifications or categories. With AI, that all…
Read article