Home Archive AI workflows, C# 14, EF Core – .NET News Daily Issue #345 (Dec 11, 2025)

Editor's note

I pulled together a deliberately mixed issue this time: AI agents, language/runtime updates, data access, and tooling all share the page. The .NET Conf 2025 recap and the Visual Studio 2026 profiler piece are especially useful for tracking where the platform is heading. I also liked the practical posts on owned entities and mapping choices, because they connect new features to everyday architecture decisions.

AI workflows, C# 14, EF Core

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

Share your testimonial →

Today's Articles

Building Autonomous Multi-Agent Systems With .NET

https://medium.com/@karthikns999/multi-agent-systems-dotnet-8950db4558d9?source=rss------dotnet-5

A beginner to expert guide for building multi-agent AI systems with .NET and real-world workflow automation. Continue reading on Stackademic »

Article preview

The Real Difference Between Exceptions You Throw and Exceptions You Catch

https://medium.com/@sweetondonie/the-real-difference-between-exceptions-you-throw-and-exceptions-you-catch-e2dd5d68a17c?source=rss------csharp-5

Exceptions look simple: throw errors → catch errors.

Article preview

.NET Conf 2025 Recap – Celebrating .NET 10, Visual Studio 2026, AI, Community, & More

https://devblogs.microsoft.com/dotnet/dotnet-conf-2025-recap/

.NET Conf 2025 is over, but you can catch up with all the announcements and fun with video recordings, slides, demos, and more. The post .NET Conf 2025 Recap – Celebrating .NET 10, Visual Studio 2026...

Article preview

C# 14 Just Made Your Properties Smarter

https://medium.com/@nidhiname/c-14-just-made-your-properties-smarter-24d0473d4569?source=rss------csharp-5

There’s always that one bug that makes you question your entire career. Mine showed up during a QA run where a perfectly innocent model…

Article preview

Why Your Code Looks Clean but Still Smells (Beginner’s Guide to Code Smells)

https://medium.com/@sweetondonie/why-your-code-looks-clean-but-still-smells-beginners-guide-to-code-smells-6edf3432c9cb?source=rss------dotnet-5

Sometimes your code looks clean on the surface but still feels… off. Like everything works, but you sense the future bug storm coming.

Article preview

Stop Using AutoMapper: Mapperly & Mapster in 2025

https://medium.com/net-code-chronicles/stop-using-automapper-mapster-mapperly-zero-allocation-5f0c59e8e895?source=rss------dotnet-5

Tired of reflection-heavy AutoMapper setups? Learn how Mapster and Mapperly give you source-generated, zero-allocation mapping in .NET 8. Continue reading on .Net Code Chronicles »

Article preview

Mastering Collections in .NET Core

https://www.c-sharpcorner.com/article/mastering-collections-in-net-core/

Master .NET Core collections! Explore Lists, Dictionaries, Queues, Stacks, HashSets, and Concurrent Collections with real-time examples and performance tips.

Article preview

I Added ONE Line to My LINQ Query and Deleted 40 Lines of ‘If’ Statements

https://medium.com/@maged_/i-added-one-line-to-my-linq-query-and-deleted-40-lines-of-if-statements-9b7c3319fb88?source=rss------dotnet-5

“Just filter by name… oh, and email… maybe age… possibly status… and make sure empty inputs do nothing.” That’s how a five-second spec…

Article preview

Profiler Agent - Delegate the analysis, not the performance

https://devblogs.microsoft.com/visualstudio/delegate-the-analysis-not-the-performance/

In Visual Studio 2026 we introduced Copilot Profiler Agent, a new AI-powered assistant that helps

Article preview

Will This New EF Core Feature Be the End of Dapper?

https://medium.com/@maged_/will-this-new-ef-core-feature-be-the-end-of-dapper-ac014917657b?source=rss------csharp-5

If you want the full source code, join our community: Here

Article preview

How to Create a WCF Web Services in C# .NET Core

https://www.c-sharpcorner.com/article/wcf-web-services-in-c-sharp-net-core/

Learn how to seamlessly integrate WCF web services into your C# .NET Core projects using Visual Studio's Connected Services feature. This guide provides a step-by-step walkthrough.

Article preview

From Framework to Future: How .NET Evolved Into a Modern Powerhouse

https://medium.com/@saraswatigowala26/from-framework-to-future-how-net-evolved-into-a-modern-powerhouse-ada1321f77f0?source=rss------dotnet-5

When Microsoft first introduced the .NET Framework in 2002, few could have imagined the transformation it would undergo in the decades to…

Article preview

Your .NET App Is Slow — One Keyword FIXED Everything!

https://medium.com/dot-net-sql-learning/your-net-app-is-slow-one-keyword-fixed-everything-078ceeb32afc?source=rss------dotnet-5

If you are facing any of these 5 problems — Continue reading on Dot Net, API & SQL Learning »

Article preview

Mastering owned entities in EF Core: Cleaner complex types

https://blog.elmah.io/mastering-owned-entities-in-ef-core-cleaner-complex-types/

Not all data in your application should live as a standalone table with its own ID and lifecycle. Sometimes you need a tightly coupled dependent object that exists alongside its parent, like a movie's...

Article preview

Visual Studio 2026 is here..

https://medium.com/@sachinghadi/visual-studio-2026-is-here-a4b9764d5aef?source=rss------dotnet-5

Every .NET developer has a reason to be excited: . Visual Studio 2026 is here.

Article preview

Content Negotiation in Dotnet Core Webapi

https://ravindradevrani.medium.com/content-negotiation-in-dotnet-core-webapi-1035ed1d7e53?source=rss------csharp-5

As defined in rfc2616 — “Content nagotiation is the process of selecting the best representation for a given response when there are…

Article preview

Understanding Extension Members in C# 14

https://www.c-sharpcorner.com/blogs/c-sharp-14-extension-members

Explore C# 14's extension members! Enhance existing types with properties, methods, and more, without modifying original code. Write cleaner, modular, and maintainable C# code.

Article preview

Jasen's take on today's picks

Building Autonomous Multi-Agent Systems With .NET

A practical starter on multi-agent systems, with enough workflow automation detail to move beyond toy demos.

The Real Difference Between Exceptions You Throw and Exceptions You Catch

A sharp reminder that throwing and catching exceptions are different concerns, and that distinction matters in real code.

.NET Conf 2025 Recap – Celebrating .NET 10, Visual Studio 2026, AI, Community, & More

A concise recap of .NET Conf 2025, including .NET 10, Visual Studio 2026, and the ecosystem chatter around them.

C# 14 Just Made Your Properties Smarter

C# 14 gets another useful property-focused improvement, and the examples show why small language changes still matter.

Why Your Code Looks Clean but Still Smells (Beginner’s Guide to Code Smells)

A beginner-friendly code-smells guide that explains why code can look tidy while still setting up future maintenance pain.

Stop Using AutoMapper: Mapperly & Mapster in 2025

Mapperly and Mapster get the anti-AutoMapper treatment here, with source-generated mapping and zero-allocation claims front and center.

Mastering Collections in .NET Core

A solid collections refresher covering core types plus concurrency tradeoffs, with performance notes for day-to-day use.

I Added ONE Line to My LINQ Query and Deleted 40 Lines of ‘If’ Statements

This LINQ refactor story is the kind of before-and-after that makes query composition feel worth the extra thought.

Profiler Agent - Delegate the analysis, not the performance

The new profiler agent post is more about delegation than magic, and it’s a useful look at AI-assisted performance analysis.

Will This New EF Core Feature Be the End of Dapper?

A lively Dapper-versus-EF Core comparison framed around a new EF Core feature, which should spark debate more than agreement.

How to Create a WCF Web Services in C# .NET Core

A practical WCF-in-.NET Core walkthrough for teams that still need to bridge older services into modern projects.

From Framework to Future: How .NET Evolved Into a Modern Powerhouse

This history-of-.NET piece is a nice reminder of how far the platform has moved from the original framework days.

Your .NET App Is Slow — One Keyword FIXED Everything!

A performance-minded post that suggests one keyword can change everything, though the real lesson is usually in the measurement.

Mastering owned entities in EF Core: Cleaner complex types

Owned entities in EF Core are explained well here, especially for modeling dependent value-like structures without extra tables.

Visual Studio 2026 is here..

Visual Studio 2026 gets a straightforward introduction, useful if you want the highlights without digging through release noise.

Content Negotiation in Dotnet Core Webapi

Content negotiation in Web API is a fundamentals post worth revisiting if your APIs serve multiple media types.

Understanding Extension Members in C# 14

C# 14 extension members round out the issue with another language feature aimed at cleaner APIs and less friction.

Related issues

📬 Get daily .NET content delivered to your inbox