Home Archive Async, EF Core, and AI agents – .NET News Daily Issue #391 (Feb 13, 2026)

Editor's note

I kept this issue intentionally mixed: there’s practical async advice, production EF Core troubleshooting, and some newer AI platform pieces. The Azure SQL Managed Instance update stood out for anyone watching database throughput, while the MCP server article shows where .NET tooling is heading next.

Async, EF Core, and AI agents

In partnership with

Free, private email that puts your privacy first

A private inbox doesn’t have to come with a price tag—or a catch. Proton Mail’s free plan gives you the privacy and security you expect, without selling your data or showing you ads.

Built by scientists and privacy advocates, Proton Mail uses end-to-end encryption to keep your conversations secure. No scanning. No targeting. No creepy promotions.

With Proton, you’re not the product — you’re in control.

Start for free. Upgrade anytime. Stay private always.

Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

Flatten Arrays and Collections in C#: The Definitive Guide for Fast, Clean Code

https://medium.com/@ahmad.sohail/flatten-arrays-and-collections-in-c-the-definitive-guide-for-fast-clean-code-bd7ea31aac32?source=rss------dotnet-5

If you’ve ever wrangled with multi-dimensional arrays, nested lists, or jagged collections in C#, you know the pain: you just want a…

Article preview

Checkpointing & Resuming AI Workflows in .NET

https://blog.gopenai.com/checkpointing-resuming-ai-workflows-in-net-0f5fd35b763d?source=rss------dotnet-5

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 »

Article preview

Async/Await Explained from First Principles

https://medium.com/@kenan.olmezoglu.dev/async-await-explained-from-first-principles-548bea432fa7?source=rss------csharp-5

1. All programming languages start from the same philosophy All mainstream programming languages are built on the same foundational…

Article preview

Why async void Should Almost Never Be Used in .NET Core

https://medium.com/@abhishek.s.khandare/why-async-void-should-almost-never-be-used-in-net-core-f6b2bba3db47?source=rss------csharp-5

Asynchronous programming is a core part of modern .NET applications. The async and await keywords make it easier to write non-blocking…

Article preview

Claude Opus 4.6: Anthropic’s powerful model for coding, agents, and enterprise workflows is now available in Microsoft Foundry

https://azure.microsoft.com/en-us/blog/claude-opus-4-6-anthropics-powerful-model-for-coding-agents-and-enterprise-workflows-is-now-available-in-microsoft-foundry-on-azure/

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’...

Article preview

EF Core Code That Works Locally but Fails in Production (part 2)

https://www.c-sharpcorner.com/article/ef-core-code-that-works-locally-but-fails-in-production-part-2/

Avoid EF Core production disasters! Learn how to fix common logic and tracking mistakes like improper Any(), First(), and missing AsNoTracking() for optimal performance.

Article preview

Clean Architecture With Document Databases, Minimal APIs, and CQRS in .NET 10

https://medium.com/@mariammaurice/clean-architecture-with-document-databases-minimal-apis-and-cqrs-in-net-10-f58b2dd57df2?source=rss------dotnet-5

Part 1 — Laying a Rock-Solid Foundation Continue reading on Stackademic »

Article preview

Azure SQL Managed Instance just got WAY faster - Meet Next gen GP | Data Exposed

https://www.youtube.com/watch?v=y2zSs6sGCr0

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...

Article preview

Handle data set pagination with `PagedListResult`

https://iamrzr.medium.com/handle-data-set-pagination-with-pagedlistresult-4e30fab2c5a7?source=rss------dotnet-5

Overview

Article preview

Understanding the Microsoft.Agents.AI API — A .NET Developer’s Guide

https://medium.com/@kavathiyakhushali/understanding-the-microsoft-agents-ai-api-a-net-developers-guide-77345c26e4f2?source=rss------dotnet-5

AI agents are changing how we build intelligent applications — from chatbots and workflow assistants to decision automation systems.

Article preview

Learn Visual Studio Code in 15 minutes: 2026 Official Beginner Tutorial

https://www.youtube.com/watch?v=rNUZm1xLlzo

Get started in Visual Studio Code in just 15 minutes in this easy-to-follow tutorial! Bluesky: https://bsky.app/profile/vscode.dev

Article preview

.NET Source Generators with Jason Bock

http://www.dotnetrocks.com/default.aspx?ShowNum=1988

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...

Article preview

Part 2: Build an MCP Server in C#/.NET and Enrich It With Repository Context

https://medium.com/@denherrring/part-2-build-an-mcp-server-in-c-net-and-enrich-it-with-repository-context-2b5d12218b1c?source=rss------csharp-5

The .NET ecosystem now has an official C# MCP SDK plus project templates that get you from “zero” to a working server fast.

Article preview

Jasen's take on today's picks

Flatten Arrays and Collections in C#: The Definitive Guide for Fast, Clean Code

A solid refresher on flattening collections without turning your code into a LINQ maze.

Checkpointing & Resuming AI Workflows in .NET

Checkpointing is the difference between brittle AI demos and workflows you can actually resume in production.

Async/Await Explained from First Principles

A nice first-principles walkthrough for teams still getting async/await behavior straight.

Why async void Should Almost Never Be Used in .NET Core

Good reminder that async void is usually a trap outside event handlers.

Claude Opus 4.6: Anthropic’s powerful model for coding, agents, and enterprise workflows is now available in Microsoft Foundry

Claude in Foundry is notable because it pushes agent-style work closer to production Azure setups.

EF Core Code That Works Locally but Fails in Production (part 2)

These EF Core gotchas are the kind that only show up after deployment, which is why they matter.

Clean Architecture With Document Databases, Minimal APIs, and CQRS in .NET 10

Clean architecture plus document databases and CQRS is a combo many teams are actively exploring.

Azure SQL Managed Instance just got WAY faster - Meet Next gen GP | Data Exposed

The Azure SQL performance update is worth a look if you care about latency and scale.

Handle data set pagination with `PagedListResult`

Paged results are boring until your API needs to stay consistent under real load.

Understanding the Microsoft.Agents.AI API — A .NET Developer’s Guide

Microsoft.Agents.AI gives .NET developers a clearer path for building agent workflows.

Learn Visual Studio Code in 15 minutes: 2026 Official Beginner Tutorial

A quick VS Code tutorial, but useful for onboarding newer devs fast.

.NET Source Generators with Jason Bock

Source generators remain one of the best ways to trade boilerplate for compile-time help.

Part 2: Build an MCP Server in C#/.NET and Enrich It With Repository Context

MCP servers in C# are getting practical fast, especially with repository context attached.

Related issues

📬 Get daily .NET content delivered to your inbox