Home Archive EF Core seeding, Aspire 13.2, and faster tests – .NET News Daily Issue #422 (Mar 30, 2026)

Editor's note

I kept this issue deliberately mixed: security, tooling, platform updates, and hands-on app guidance all showed up. The AutoMapper vulnerability note is the kind of reminder I like to surface quickly, while the EF Core 10 seeding and test sharding pieces are the sort of practical reads that save teams time.

EF Core seeding, Aspire 13.2, and faster tests

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

Share your testimonial →

Today's Articles

AutoMapper's last free version has a security flaw

https://www.roundthecode.com/dotnet-blog/automapper-last-free-version-has-security-flaw

AutoMapper v14 has a high-severity vulnerability. Learn what it means, how to reproduce it, and how to fix or avoid the issue in your apps. The page AutoMapper's last free version has a security flaw ...

Article preview

Building High-Throughput Pipelines in C# with TPL Dataflow

https://www.c-sharpcorner.com/article/building-high-throughput-pipelines-in-c-sharp-with-tpl-dataflow/

Build high-throughput data pipelines in C# using TPL Dataflow! Learn to process data efficiently with concurrency control and a clean architecture. Example: Car manufacturing.

Article preview

What Does "Simple" Really Mean in Enterprise .NET?

http://www.binaryintellect.net/articles/2dd5c827-6348-4751-b4a7-8064e9a9ccce.aspx

Minimal APIs, clean architecture, vertical slices, modular monoliths — the .NET ecosystem periodically renews its fascination with simplicity. Each wave promises to reduce friction, remove boilerplate...

Article preview

Seeding Initial Data in EF Core 10 - HasData vs UseSeeding

https://codewithmukesh.com/blog/seeding-initial-data-efcore/

Seed initial data in EF Core 10 with HasData, UseSeeding, and Program.cs. Includes decision matrix, FK seeding, environment strategies, and pitfalls.

Article preview

Speed Up .NET CI with Test Sharding

https://www.meziantou.net/split-dotnet-test-projects-into-shards-with-meziantou-shardedtest.htm

A shard is a deterministic subset of your test suite. Test sharding means splitting one long test run into multiple smaller runs, and executing them in parallel in CI. Instead of waiting for one job t...

Article preview

45 .NET Web API Interview Questions That Actually Get Asked in 2026

https://codewithmukesh.com/blog/dotnet-webapi-interview-questions/

45 practical .NET Web API interview questions with expert answers, code examples, and red flags. ASP.NET Core, EF Core 10, auth, caching, architecture.

Article preview

Announcing Aspire 13.2

https://devblogs.microsoft.com/aspire/aspire-13-2-announcement/

Aspire 13.2 is here — and this one's a big deal. TypeScript AppHost authoring. An AI-agent-native CLI. New and improved integrations. A smarter dashboard. We've been building toward some of these for ...

Article preview

Announcing TypeScript 6.0

https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/

Today we are excited to announce the availability of TypeScript 6.0! If you are not familiar with TypeScript, it's a language that builds on JavaScript by adding syntax for types, which enables type-c...

Article preview

Accelerating .NET MAUI Development with AI Agents

https://devblogs.microsoft.com/dotnet/accelerating-dotnet-maui-with-ai-agents/

Learn how custom-built AI agents are dramatically improving the .NET MAUI contribution workflow, reducing issue resolution time by 50-70% while increasing test coverage and code quality. The post Acc...

Article preview

Generative AI for Beginners .NET: Version 2 on .NET 10

https://devblogs.microsoft.com/dotnet/generative-ai-for-beginners-dotnet-version-2-on-dotnet-10/

Announcement of Version 2 of Generative AI for Beginners .NET, a free course rebuilt for .NET 10 with Microsoft.Extensions.AI, updated RAG patterns, and new agent framework content across five structu...

Article preview

Agentic Platform Engineering with GitHub Copilot

https://devblogs.microsoft.com/all-things-azure/agentic-platform-engineering-with-github-copilot/

We've talked about the human scale problem and what happens when infrastructure scales but understandin

Article preview

Manage SQL database schemas in VS Code: Publish dialog and item templates

https://devblogs.microsoft.com/azure-sql/sql-database-projects-publish-dialog-item-templates/

Making schema changes often means jumping between tools. You write code in VS Code, then switch to a separate tool to deploy your changes : exporting a script, running it manually, or copy-pasting int...

Article preview

SQL code analysis in VS Code: Configure rules without editing your project file

https://devblogs.microsoft.com/azure-sql/sql-code-analysis-in-vs-code-configure-rules-without-editing-your-project-file/

SQL code analysis has been part of the SSDT workflow for a long time. Before deploying a schema change, you could run a set of static analysis rules against your project to catch potential issues, thi...

Article preview

📢LangChain4j got a new video series

https://devblogs.microsoft.com/java/📢langchain4j-got-a-new-video-series/

We recently released a step-by-step course f

Article preview

ASP.NET Core Output Cache: How to Speed Up Your API with In-Memory Cache and Redis

https://antondevtips.com/blog/aspnetcore-output-cache-how-to-speed-up-your-api-with-in-memory-cache-and-redis

Learn how to use Output Cache in ASP.NET Core using IMemoryCache, IDistributedCache, and Redis. This guide covers Output Cache setup in ASP.NET Core, expiration time, cache policies, VaryByHeader, Var

Article preview

Keep your chat tidy with the latest #vscode updates

https://www.youtube.com/shorts/HQnses4p1N8

Article preview

C# Tip: How to JSON Serialize and Deserialize values as DateTime, DateTimeOffset, DateOnly and TimeOnly

https://www.code4it.dev/csharptips/json-serialize-deserialize-dates/

Handling dates is never trivial. And handling JSON serialization and deserialization of dates is even more difficult. And, even worse, how can you convert a value as DateTime, DateTimeOffset, DateOnly...

Article preview

Visual Studio Code 1.113

https://devblogs.microsoft.com/vscode-blog/visual-studio-code-1.113

Learn what's new in Visual Studio Code 1.113 Read the full article

Article preview

A Simple .NET CLI Web Server

https://nodogmablog.bryanhogan.net/2026/03/a-simple-net-cli-web-server/

Locally, I’ve been running some simple HTML, CSS, and JavaScript websites, as well as the static output of Hugo (my blog engine). When I wanted to serve these sites, I used to call python -m http.ser...

Article preview

What is the Difference Between IEnumerable and IQueryable in C#?

https://www.c-sharpcorner.com/article/what-is-the-difference-between-ienumerable-and-iqueryable-in-c-sharp/

Unlock the secrets of IEnumerable vs. IQueryable in C#! Learn when to use each for optimal performance in data querying, especially with LINQ and Entity Framework. Master efficient data handling!

Article preview

Jasen's take on today's picks

AutoMapper's last free version has a security flaw

Important security heads-up on AutoMapper v14: if you use it, verify exposure and patch/mitigate quickly.

Building High-Throughput Pipelines in C# with TPL Dataflow

A solid practical piece on TPL Dataflow for folks building throughput-heavy pipelines without turning code into spaghetti.

What Does "Simple" Really Mean in Enterprise .NET?

EF Core 10 seeding gets a useful decision matrix here; that’s the kind of detail teams actually need.

Seeding Initial Data in EF Core 10 - HasData vs UseSeeding

Test sharding is one of those CI improvements that pays back every day once your suite gets slow.

Speed Up .NET CI with Test Sharding

The Aspire 13.2 announcement is worth a look if you’re following the platform’s move toward more AI-aware workflows.

45 .NET Web API Interview Questions That Actually Get Asked in 2026

The MAUI AI-agents article is especially interesting because it connects developer productivity with measurable quality gains.

Related issues

📬 Get daily .NET content delivered to your inbox