EF Core, Azure and AI API updates
This issue covers EF Core query splitting, locking, and audit patterns, plus Azure pricing, APIM setup, FastEndpoints, Kestrel, and .NET 10 AI changes.
Jasen's top three picks
- 1 1 Sneaky EF Core Trick That Makes Heavy Includes Fast: Query Splitting (with a Clean .NET
medium.com
Query splitting is a practical EF Core fix when heavy includes start dragging your app down.
- 2 Azure Pricing Calculator: Estimate Smarter, Plan Confidently
youtube.com
Azure Pricing Calculator is a useful reminder that architecture decisions also need cost estimates.
- 3 Developer and AI Code Reviewer: Reviewing AI-Generated Code in .NET
devblogs.microsoft.com
Microsoft’s AI code reviewer article is worth reading if you’re deciding how humans should vet generated code.
Editor's note
I pulled a pretty varied mix today, with EF Core performance and concurrency pieces sitting right next to Azure guidance and API design. The .NET 10 AI article and the Kestrel deep dive stood out because they connect platform direction with day-to-day implementation choices.
Today's articles
1 Sneaky EF Core Trick That Makes Heavy Includes Fast: Query Splitting (with a Clean .NET
medium.com
If you want the full source code, join our community: Here
Read articleAzure Pricing Calculator: Estimate Smarter, Plan Confidently
youtube.com
In this episode of the #AzureEssentialsShow, host Thomas Maurer and guest Britt Henderson from Microsoft Azure dive into the #AzurePricingCalculator, exploring its features, benefits, and practical ap...
Read articleDeveloper and AI Code Reviewer: Reviewing AI-Generated Code in .NET
devblogs.microsoft.com
Enhancing the role of the developer with the responsibility of reviewing AI-generated code is a transformative step for developers. You become a critical gatekeeper for the quality, reliability, and m...
Read articleMaster Integration Testing in .NET 8: Automate Your Azure Logic Apps Like a Pro
blog.devgenius.io
Hi friends! happy to see you again 👋😃. Today let’s dive into very intresting tuitorial topic i.e “Integration testing with .Net for… Continue reading on Dev Genius »
Read articleC# Partial Constructors and Events Explained with Real-Life Bank Example
medium.com
How Partial Classes Make Your Code Cleaner and Events Make It Smarter
Read articleFastEndpoints vs Traditional Controllers in .NET — A Modern API Framework Comparison
medium.com
Learn how FastEndpoints compares to traditional Controllers and why many developers are switching for better performance and simplicity
Read article🔴 VS Code Live - v1.105 Release
youtube.com
Interesting new C# 14 features coming with .NET 10
Read articleStop Fighting the GC: 5 .NET Memory Hacks That Actually Work
blog.stackademic.com
How to make the garbage collector work with you, not against you. Continue reading on Stackademic »
Read article⚙️ Understanding Kestrel Web Server in .NET Core — Deep Dive with Real-World Examples
c-sharpcorner.com
Dive deep into Kestrel, the cross-platform web server for ASP.NET Core! Learn its architecture, how it handles requests, and how to configure it for optimal performance. Discover real-world examples, ...
Read article7 .NET Performance Interview Questions Senior Devs Actually Face (And How to Answer Them)
isitvritra101.medium.com
You’ve optimized production apps for years. Here’s how to talk about it in 45 minutes
Read articleAbstraction in C#: Hiding the Mess, Showing the Magic
medium.com
When I first heard the term abstraction, I thought: “Is this about painting abstract art? Because I’m terrible at drawing.”
Read article9 Practical Ways to Track Entity Changes in EF Core (with a Clean .NET 9 Audit Logger)
medium.com
If you want the full source code, join our community: Here
Read article.NET 10: The Deathblow to Python’s AI Dominance? 💀
gapvelocity.ai
Python’s AI reign is toast. .NET 10 (LTS) isn't just an update; it's a weapon. Native vectors in EF Core, AI abstraction (IChatClient!), and performance that makes Python look like a tired, old script...
Read articleOptimistic vs Pessimistic Locking in EF Core Explained
medium.com
Understand the difference between `optimistic` and `pessimistic` locking in EF Core with code examples.
Read article5 .NET Patterns That’ll Save Memory, CPU, and Your Sanity
blog.stackademic.com
Modern .NET gives you tools to make data handling effortless, if you know where to look. Continue reading on Stackademic »
Read articleThe Hidden Truth About IReadOnlyCollection vs. IEnumerable in .NET — Most Developers Get This Wrong
medium.com
Discover the subtle yet powerful differences between these two interfaces that can make or break your app’s performance, maintainability…
Read articleAzure API Management Gateway — ABC Inc : Full Setup Guide (step-by-step)
c-sharpcorner.com
This comprehensive guide provides a step-by-step walkthrough of setting up Azure API Management (APIM) for ABC Inc. Learn how to publish, secure, and monitor backend APIs (App Service, Azure Functions...
Read articleBuilding .NET Microservices: A Beginner-Friendly Guide
medium.com
Microservices are no longer just a buzzword — they’re the backbone of modern scalable applications. If you’ve worked with monolithic apps…
Read articleRepository Pattern Over EF: Boon or Burden?
c-sharpcorner.com
Explore the Repository Pattern with Entity Framework in .NET. This article dives into whether wrapping EF with a repository is a boon or burden, covering Unit of Work, generic repositories, read/write...
Read article