Source generators, performance, and .NET 10 updates
Compile-time helpers, .NET 10 and C# 14 changes, EF Core debate, performance tuning, Azure GA news, and background task scheduling.
Jasen's top three picks
- 1 How I Used C# Source Generators to Eliminate Boilerplate and Speed Up Development
blog.stackademic.com
Source generators can erase repetitive code, and this write-up shows where compile-time automation actually pays off.
- 2 🔒Terminal Commands in VS Code Chat
youtube.com
VS Code Chat getting terminal commands is a small workflow win, but it can save a lot of context switching.
- 3 ⭐ New Features in .NET 10 and C# 14 — A Deep Dive Into What’s Coming Next
medium.com
The .NET 10 and C# 14 preview roundup is worth a read if you track upcoming language and runtime changes.
Editor's note
I pulled together a broad mix again today: compile-time tooling, runtime performance, data access, cloud, and API design. The source generators piece is especially practical, and the .NET 10/C# 14 deep dive is a useful checkpoint for anyone planning upgrades.
Today's articles
How I Used C# Source Generators to Eliminate Boilerplate and Speed Up Development
blog.stackademic.com
An exploration of compile-time metaprogramming, what it automates well, and the surprising productivity gains it unlocked. Continue reading on Stackademic »
Topics: C# Source Generators
Read article🔒Terminal Commands in VS Code Chat
youtube.com
Stop Writing Slow C#: Span and Memory Are the Upgrade Your Codebase Desperately Needs
Topics: .NET Core Visual Studio Code
Read article⭐ New Features in .NET 10 and C# 14 — A Deep Dive Into What’s Coming Next
medium.com
As .NET continues to evolve, Microsoft’s latest release — .NET 10 paired with C# 14 — brings one of the most polished and…
Read article.NET Performance Techniques for Improved Memory Efficiency, GC Behaviour, and Application…
medium.com
A high-level exploration of practical .NET performance improvements and how they translate into measurable gains in memory efficiency, GC…
Topics: .NET Core Performance
Read articleVariables and Data Types in C#
c-sharpcorner.com
Master C# variables and data types! This guide covers primitive (int, double, bool, string) & non-primitive types (arrays, lists) with real-world examples. Perfect for beginners!
Topics: C#
Read articleWhy Most .NET Apps Crash Under Load — And the Simple Fix You Forgot
medium.com
(It’s not the cloud. It’s your threading.) Continue reading on Dev Genius »
Topics: .NET Core Performance
Read articleSupercharging ASP.NET Core Apps with EF Core and AI
trevoirwilliams.com
In this blog, I’ll explain in simple terms what ASP.NET Core and EF Core do, how AI fits into that picture, and how you can start adding AI features to your applications without rewriting everything f...
Topics: ASP.NET Core EF Core OpenAI
Read articleAzure Content Understanding is now generally available
devblogs.microsoft.com
At Microsoft Ignite this year, we’re excited to announce that Azure Content Understanding in Foundry Tools is now generally available (GA). Over the past months, we’ve seen preview usage across indust...
Topics: Azure Azure Functions
Read articleFetching GitHub content from C#
blog.elmah.io
One of the many advantages of storing project assets on GitHub is that you can access them both manually and programmatically from anywhere. At elmah.io, we are using this for documentation, code snip...
Read articleRepository Pattern vs Direct EF Core: The Great Debate
medium.com
Should you use the Repository Pattern or work directly with DbContext? Explore both approaches with practical examples, performance…
Topics: Clean Architecture EF Core
Read articleThe Systems That Scale Fastest Usually Spend the Least — Here’s How
medium.com
(Real lessons from systems that actually succeeded)
Topics: .NET Core Performance
Read articleBuilding on .NET 10: A Chat with Kajetan Duszyńsk, Author of '.NET 10 Revealed'
dotnetcore.show
Strategic Technology Consultation Services This episode of The Modern .NET Show is supported, in part, by RJJ Software's Strategic Technology Consultation Services. If you're an SME (Small to Medium ...
Topics: .NET 10
Read articleScheduling Background Tasks in .NET
medium.com
Need a daily report at 06:00, a retrying email sender, or a weekly data cleanup that never overlaps? Quartz.NET is your grown-up scheduler…
Topics: .NET Core Performance
Read articleBeyond REST: The GraphQL Paradigm Redefining API Engineering.
medium.com
APIs are the backbone of modern software. For years, REST has dominated. Yet, as systems grow more complex microservices, mobile apps… Continue reading on Javarevisited »
Topics: REST API
Read article