Home Archive VS Code agents, Dapper, SignalR – .NET News Daily Issue #467 (Jun 2, 2026)

Editor's note

I pulled together another intentionally mixed batch today, from VS Code agent tooling to some very practical Dapper and IIS lessons. The Dapper concurrency piece stands out because it tackles lost updates without leaning on EF Core, and Rick Strahl’s write-up on ASP.NET Identity cookies after IIS restarts is exactly the kind of production issue worth understanding.

VS Code agents, Dapper, SignalR

In partnership with

AI Agents Are Reading Your Docs. Are You Ready?

Last month, 48% of visitors to documentation sites across Mintlify were AI agents, not humans.

Claude Code, Cursor, and other coding agents are becoming the actual customers reading your docs. And they read everything.

This changes what good documentation means. Humans skim and forgive gaps. Agents methodically check every endpoint, read every guide, and compare you against alternatives with zero fatigue.

Your docs aren't just helping users anymore. They're your product's first interview with the machines deciding whether to recommend you.

That means: clear schema markup so agents can parse your content, real benchmarks instead of marketing fluff, open endpoints agents can actually test, and honest comparisons that emphasize strengths without hype.

Mintlify powers documentation for over 20,000 companies, reaching 100M+ people every year. We just raised a $45M Series B led by @a16z and @SalesforceVC to build the knowledge layer for the agent era.

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

Share your testimonial →

Today's Articles

Agent Plugins in VS Code

https://www.youtube.com/watch?v=9lonfxt7dqU

Docs: https://code.visualstudio.com/docs/copilot/agents/agent-tools Copilot Free: https://aka.ms/vscode-activatecopilotfree

Article preview

ConsoleLogStreaming

https://sipkeschoorstra.medium.com/consolelogstreaming-aadea402820b?source=rss------csharp-5

Streaming console output from distributed applications in real time

Article preview

Introducing the Azure DocumentDB Blog

https://devblogs.microsoft.com/documentdb/introducing-azure-documentdb/

A dedicated home for MongoDB developers, MongoDB migrations, and modern document database development using Open Source on Azure

Article preview

Create Multi-platform Apps with .NET MAUI and the MAUI Community Toolkit

https://visualstudiomagazine.com/articles/2026/05/28/create-multi-platform-apps-with-net-maui-and-the-maui-community-toolkit.aspx

Microsoft Senior Content Developer Alvin Ashcraft explains how to use .NET MAUI, the MAUI Community Toolkit and MVVM Toolkit to speed up cross-platform app development with practical patterns for XAML...

Article preview

C# 15 Quietly Expanded — And It’s a Bigger Deal Than You Think

https://medium.com/@Rajdip27/c-15-quietly-expanded-and-its-a-bigger-deal-than-you-think-73c7c32d253f?source=rss------dotnet-5

C# 15 ships with .NET 11 in November 2026. Its previews are already live — and two features are quietly reshaping how we write C# every…

Article preview

Concurrency in Dapper Without EF Core

https://medium.com/@tanimak/optimistic-concurrency-in-dapper-without-ef-core-05598ec05b00?source=rss------dotnet-5

A practical guide to avoiding lost updates in ASP.NET Core using LastUpdated timestamps

Article preview

Python for .NET devs: data types, classes, objects, records and interfaces

https://www.code4it.dev/python-for-dotnet-developers/data-types-classes-objects-records-interfaces/

A quick comparison of data types, classes, objects, records, and interfaces in C# and Python, designed for .NET developers learning Python.

Article preview

From Zero to Deployment: How .NET Apps Really Work in the Real World

https://medium.com/@curiosity.orbit/from-zero-to-deployment-how-net-apps-really-work-in-the-real-world-3c8ed27a40c0?source=rss------dotnet-5

Modern software development is built on layers of abstraction that work together to transform human-written logic into real-world…

Article preview

A simple introduction to SignalR

https://serkanozbeykurucu.medium.com/a-simple-introduction-to-signalr-4b3822ccf499?source=rss------dotnet-5

Real time communication has quietly become something users just expect. Chat apps, live dashboards, alerts that show up the second…

Article preview

Lost ASP.NET Identity Cookies on IIS Application Pool Restarts

https://weblog.west-wind.com/posts/2026/May/31/Lost-ASPNET-Cookies-on-IIS-Restarts

Last week I finally updated my blog and moved it to .NET 10 from the ancient WebForms based engine I built 20 years ago. The app is deployed onto a Windows server running IIS and I ran into a snag rel...

Article preview

Why I Left Visual Studio for VS Code as a .NET Developer

https://between-coding-and-life.medium.com/why-i-left-visual-studio-for-vs-code-as-a-net-developer-91bf7c3343f6?source=rss------dotnet-5

The IDE did everything for me. Then AI did it better.

Article preview

Dapper at Scale: The Stored-Procedure Lessons That Cost Me an Afternoon

https://medium.com/@tnjturner/dapper-at-scale-the-stored-procedure-lessons-that-cost-me-an-afternoon-e3b1bc9cfa25?source=rss------dotnet-5

Generating a good stored procedure is one problem. Living with a stored-procedure-only data layer across fourteen repositories is another…

Article preview

Building a Real-Time AI API with Claude & ASP.NET Core

https://odhavanivipul92.medium.com/building-a-real-time-ai-api-with-claude-asp-net-core-848470f14273?source=rss------dotnet-5

SSE streaming so users see answers as they’re generated, Minimal API endpoints, and tool use so Claude can call your own C# methods

Article preview

Claude & Codex Agents in VS Code

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

Docs: https://code.visualstudio.com/docs/copilot/agents/agent-tools Copilot Free: https://aka.ms/vscode-activatecopilotfree

Article preview

Jasen's take on today's picks

Agent Plugins in VS Code

Useful if you’re trying to understand where VS Code agent tooling is headed beyond plain chat and completions.

ConsoleLogStreaming

A neat utility idea for watching distributed app console output as it happens.

Introducing the Azure DocumentDB Blog

DocumentDB gets its own home, with a clear pitch toward MongoDB users and migration scenarios on Azure.

Create Multi-platform Apps with .NET MAUI and the MAUI Community Toolkit

Good practical MAUI coverage, especially if you want faster progress with the Community Toolkit and MVVM patterns.

C# 15 Quietly Expanded — And It’s a Bigger Deal Than You Think

Worth reading with caution given the preview framing, but language evolution always deserves attention.

Concurrency in Dapper Without EF Core

A solid, practical take on optimistic concurrency when you’re using Dapper and timestamps instead of EF Core.

Python for .NET devs: data types, classes, objects, records and interfaces

A friendly bridge article for .NET developers who need to get productive in Python without relearning every concept from scratch.

From Zero to Deployment: How .NET Apps Really Work in the Real World

Broad overview material, but useful for newer developers connecting code, runtime, deployment, and hosting concerns.

A simple introduction to SignalR

A straightforward entry point for anyone who hasn’t yet built real-time features with SignalR.

Lost ASP.NET Identity Cookies on IIS Application Pool Restarts

Production-auth bugs are never fun; this is a very real IIS hosting edge case with useful lessons.

Why I Left Visual Studio for VS Code as a .NET Developer

Interesting perspective on how AI is changing the IDE tradeoff for .NET developers.

Dapper at Scale: The Stored-Procedure Lessons That Cost Me an Afternoon

The kind of hard-won Dapper advice that only shows up after a few painful repository patterns.

Building a Real-Time AI API with Claude & ASP.NET Core

Combines streaming responses, Minimal APIs, and tool calling into a practical AI endpoint example.

Claude & Codex Agents in VS Code

A companion look at agent workflows in VS Code, this time centered on Claude and Codex.

Related issues

📬 Get daily .NET content delivered to your inbox