Async patterns, AI workflows, and EF Core pitfalls
Issue #411 covers async fundamentals, AI workflow checkpointing, EF Core production traps, source generators, and .NET 10 architecture patterns.
Jasen's top three picks
- 1 Flatten Arrays and Collections in C#: The Definitive Guide for Fast, Clean Code
medium.com
A practical flattening guide for C# developers who want cleaner collection handling without losing readability or performance.
- 2 Checkpointing & Resuming AI Workflows in .NET
blog.gopenai.com
Checkpointing AI workflows is the kind of operational detail that makes long-running agent systems survivable in real applications.
- 3 Async/Await Explained from First Principles
medium.com
A first-principles async explainer is always useful, especially when you want the mental model behind await instead of cargo cult usage.
Editor's note
I pulled together a pretty mixed lineup today, from async/await fundamentals to AI workflow checkpointing and EF Core mistakes that only show up under production load. The MCP server piece and the source generators conversation stand out because they both show where the platform is headed next.
Today's articles
Flatten Arrays and Collections in C#: The Definitive Guide for Fast, Clean Code
medium.com
If you’ve ever wrangled with multi-dimensional arrays, nested lists, or jagged collections in C#, you know the pain: you just want a…
Topics: C#
Read articleCheckpointing & Resuming AI Workflows in .NET
blog.gopenai.com
When building real-world AI workflows — especially long-running ones — you can’t always expect the entire process to complete in a single… Continue reading on GoPenAI »
Read articleAsync/Await Explained from First Principles
medium.com
1. All programming languages start from the same philosophy All mainstream programming languages are built on the same foundational…
Topics: C#
Read articleWhy async void Should Almost Never Be Used in .NET Core
medium.com
Asynchronous programming is a core part of modern .NET applications. The async and await keywords make it easier to write non-blocking…
Read articleClaude Opus 4.6: Anthropic’s powerful model for coding, agents, and enterprise workflows is now available in Microsoft Foundry
azure.microsoft.com
With Claude Opus 4.6 now available in Microsoft Foundry, developers can delegate complex tasks end‑to‑end and trust the AI to execute independently in production. The post Claude Opus 4.6: Anthropic’...
Read articleEF Core Code That Works Locally but Fails in Production (part 2)
c-sharpcorner.com
Avoid EF Core production disasters! Learn how to fix common logic and tracking mistakes like improper Any(), First(), and missing AsNoTracking() for optimal performance.
Read articleClean Architecture With Document Databases, Minimal APIs, and CQRS in .NET 10
medium.com
Part 1 — Laying a Rock-Solid Foundation Continue reading on Stackademic »
Topics: EF Core Performance
Read articleAzure SQL Managed Instance just got WAY faster - Meet Next gen GP | Data Exposed
youtube.com
Microsoft Azure SQL: https://aka.ms/msazuresqlyt In this episode, Anna Hoffman and Uros Milanovic explain how you get lower latency, higher throughput and IOPS, more storage and databases per instanc...
Topics: Clean Architecture CQRS Minimal APIs
Read articleHandle data set pagination with `PagedListResult`
iamrzr.medium.com
Overview
Topics: Azure SQL Server
Read articleUnderstanding the Microsoft.Agents.AI API — A .NET Developer’s Guide
medium.com
AI agents are changing how we build intelligent applications — from chatbots and workflow assistants to decision automation systems.
Read articleLearn Visual Studio Code in 15 minutes: 2026 Official Beginner Tutorial
youtube.com
Get started in Visual Studio Code in just 15 minutes in this easy-to-follow tutorial! Bluesky: https://bsky.app/profile/vscode.dev
Read article.NET Source Generators with Jason Bock
dotnetrocks.com
Why would you write code to generate code? Carl and Richard talk with Jason Bock about his experiences using modern .NET source generators to optimize certain aspects of applications. Jason talks abou...
Topics: Visual Studio Code
Read articlePart 2: Build an MCP Server in C#/.NET and Enrich It With Repository Context
medium.com
The .NET ecosystem now has an official C# MCP SDK plus project templates that get you from “zero” to a working server fast.
Topics: C# Source Generators
Read article