ASP.NET Core, EF Core, and C# performance picks
A varied set of .NET reads on low-latency C#, YARP, EF Core loading, Blazor in .NET 10, Serilog, security, and more.
Jasen's top three picks
- 1 6 Rules for Ultra-Low Latency Data Access at Massive Scale in C#
medium.com
Low-latency data access advice is always worth a read when it’s grounded in scale rather than theory.
- 2 What is a Reverse Proxy? YARP Explained
medium.com
YARP explanations are useful when you need reverse proxy basics without wading through platform marketing.
- 3 Task Parallel Library (TPL) in .NET — Beyond Async/Await
medium.com
TPL reminders still matter because async/await doesn’t replace parallelism in CPU-bound work.
Editor's note
I pulled together another mixed bag this time: performance tuning, data access, web app architecture, and a few language-level C# pieces. The low-latency data access article and the Blazor/.NET 10 write-up stood out because both speak to real production tradeoffs, not just toy examples.
Today's articles
6 Rules for Ultra-Low Latency Data Access at Massive Scale in C#
medium.com
I came across this in a job description and was immediately intrigued.
Topics: C# Performance
Read articleWhat is a Reverse Proxy? YARP Explained
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Topics: ASP.NET Core Azure REST API
Read articleTask Parallel Library (TPL) in .NET — Beyond Async/Await
medium.com
Harnessing Parallelism for Performance
Topics: C# .NET Core Performance
Read articleMaster C# Linq in Just 25 Minutes!
frontend2backend.medium.com
Are you still writing long loops in C# to filter, sort, or transform your data? 🤔 If yes, then you’re probably missing out on one of the…
Topics: C#
Read articleEntity Framework Core (EF Core) loading strategies
medium.com
Imagine we have a Marketplace application. - And we have one interface show just Stores Data like name , address, location, and phone … Continue reading on easydotnet »
Topics: EF Core
Read articleStop Guessing in ASP.NET
blog.stackademic.com
A practical breakdown with real-world scenarios that will help you choose the right setup every time — whether you’re building APIs, MVC… Continue reading on Stackademic »
Topics: ASP.NET Core Web API
Read article💻 Issue 478 - Visual Studio Next Version: What’s Coming and What to Expect - NDepend Blog
dotnet.libhunt.com
How I Took My .NET 9 Minimal API From 400ms to 40ms (Without Losing My Mind)
Topics: .NET 9 Performance Visual Studio
Read articleC# Hacks: Transform your C# Coding Skills in Minutes
frontend2backend.medium.com
If you’ve been working with C# and want to write cleaner, faster, and more professional code, I’ve got something exciting for you. I just…
Topics: C#
Read articleSecure Coding Guidelines for ASP.NET Core MVC & Web API
c-sharpcorner.com
Fortify your ASP.NET Core MVC & Web API applications with these essential secure coding guidelines. Learn practical techniques to prevent common vulnerabilities like XSS, CSRF, and SQL injection. ...
Topics: ASP.NET Core Security Web API
Read articleBlazor’s Big Bet in .NET 10: How I Finally Stopped Fighting the “Two-Stack” Monster
javascript.plainenglish.io
Mini-anécdota: A few months back I was knee-deep in our SMP Pharmacy CRM, juggling a Blazor Server dashboard on one side and a chunky… Continue reading on JavaScript in Plain English »
Read articleHow Structured Logging With Serilog Can Make Your Life Easier
medium.com
Logging is one of those foundational aspects of software development that can either be your best friend or your worst nightmare…
Topics: Serilog
Read articleWhy C# Interviews Still Ask About Interface vs Abstract (and What It Really Reveals)
medium.com
Why this “basic” C# question still dominates interviews in 2025 — and what your answer really says about your design skills.
Topics: C# Solid Principles
Read articleHow C# Patterns Killed 1000+ Lines of Boilerplate (and Hidden Bugs)
blog.devgenius.io
👉 The Operator Family That Makes .NET Cleaner, Safer, and Faster Continue reading on Dev Genius »
Topics: C# Design Patterns
Read articleWhat is AsNoTracking()?
medium.com
Imaging we have a marketplace application, and for example we have a page show all stores with there infos like address and name … So here… Continue reading on easydotnet »
Topics: EF Core
Read articleREST Controller in one line in .Net
m-ushakov.medium.com
One line = one controller with even Bulk methods
Topics: GitHub Copilot Web API
Read article.NET Core Console App’te .exe Dosyası Bulunamıyor Sorunu ve Çözümü
emrekabali.medium.com
.NET Core Console Application projesinde katmanlı mimari kullanılıyor ve diğer projelerden interface ve entity’lerden faydalanılıyor…
Topics: C# Performance
Read articleSpecification Pattern in EF Core: Flexible Data Access Without Repositories
medium.com
As your .NET projects grow, handling data gets more and more complicated. Many teams start with the Repository Pattern, wrapping their EF…
Topics: .NET Core
Read articleYour Next API Won’t Be REST — It’ll Be a Copilot Skill
medium.com
Why This Blog Matters Continue reading on Dev Genius »
Topics: Design Patterns EF Core
Read articleDeep Dive into String.Intern and the Global String Pool in C#
medium.com
Friend link :- Read full story for free!
Topics: GitHub Copilot OpenAI Web API
Read articleWhat is WebAssembly in Web Development?
c-sharpcorner.com
WebAssembly (Wasm) revolutionizes web development by enabling near-native performance in browsers. Compile code from languages like C++ and Rust for demanding tasks like gaming, video editing, and sci...
Topics: C# Performance
Read articleGlobal Exception Handling in ASP.NET Core
medium.com
Instead of writing try/catch in every controller, we want one central place to: Continue reading on easydotnet »
Topics: .NET Core
Read article