EF Core, .NET 10 and architecture picks
A varied .NET lineup covering EF Core tuning, .NET 10 Preview 7, SignalR, Redis caching, CQRS, and AI-powered C# workflows.
Jasen's top three picks
- 1 5 Easy EF Core Performance Tricks Every .NET Developer Should Know
medium.com
A practical EF Core tune-up list for the people trying to shave milliseconds without rewriting everything.
- 2 How to Build a .NET Document Scanner with C# and Windows OCR API
dynamsoft.com
A hands-on niche build: document scanning plus OCR is the kind of integration work many business apps actually need.
- 3 Refactoring A Modular Monolith Without MediatR in .NET
antondevtips.com
MediatR removal is interesting because it forces a conversation about complexity, boundaries, and whether the abstraction still earns its keep.
Editor's note
I put together a deliberately mixed issue this time: performance, architecture, runtime previews, and a few practical how-tos. The EF Core performance tips and the .NET 10 Preview 7 post are the ones I’d expect most teams to skim first. I also like the ProblemDetails and Redis pieces because they’re the sort of details that quietly improve real APIs.
Today's articles
5 Easy EF Core Performance Tricks Every .NET Developer Should Know
medium.com
When I first started building apps with Entity Framework Core, I felt like I had unlocked some sort of ORM magic.
Topics: EF Core Performance
Read articleHow to Build a .NET Document Scanner with C# and Windows OCR API
dynamsoft.com
In today’s digital workplace, document scanning and text recognition are vital capabilities for many business applications. In this…
Topics: ASP.NET Core C#
Read articleRefactoring A Modular Monolith Without MediatR in .NET
antondevtips.com
MediatR is one of my favourite libraries in .NET, I have been using it for 5+ years in production. Now I am removing it from my projects Continue reading on CodeX »
Topics: Clean Architecture MediatR
Read articleThings to Consider While Integrating Third-Party APIs in .NET
medium.com
Integrating third-party APIs is a common requirement in modern .NET applications. Whether you’re working with payment gateways, social…
Read articleC# out vs ref: Real-World Examples You’ll Actually Use
medium.com
If you’ve ever been confused about when to use out or ref in C#, you’re not alone. These two keywords allow you to pass parameters by…
Topics: C# Performance
Read articleThe Ultimate .NET Developer Roadmap for 2025
medium.com
In the rapidly evolving landscape of software development, becoming a proficient .NET developer requires a structured approach to learning…
Read articleEvent-Driven Microservices with Apache Kafka and .NET 8
medium.com
Event-Driven Microservices with Apache Kafka and .NET 8
Read article.NET 8/9 with Clean Architecture + DDD + CQRS: The Ultimate 2025 Guide
medium.com
Modern enterprise applications require maintainable, testable, and scalable architectures. Combining Clean Architecture, Domain-Driven…
Topics: Clean Architecture CQRS .NET 8
Read articleA Comprehensive Guide to Development, Deployment, Security, and Best Practices
c-sharpcorner.com
Building Robust APIs with the Microsoft Stack: A Comprehensive Guide to Development, Deployment, Security, and Best Practices.
Topics: ASP.NET Core Security Web API
Read articleUnderstanding the Difference Between Convert.ToInt32(), int.Parse(), and int.TryParse() in C#.
medium.com
When working with string-to-integer conversions in C#, we often see these three methods. While they might look similar, they behave…
Read articleExploring the Power of .NET Application Development
medium.com
.NET application development enables businesses to create scalable, secure, and high-performing solutions tailored to on-demand needs…
Topics: .NET Core Performance
Read article.NET 10 Preview 7 Arrives with Exciting Enhancements: A Comprehensive Deep Dive
mfmfazrin.medium.com
Microsoft has officially released .NET 10 Preview 7, bringing a substantial array of improvements and new features across the entire…
Topics: .NET 10
Read articleBuilding Real-Time Web Applications with ASP.NET SignalR
medium.com
Real-time web applications increase engagement by delivering instant data updates to users. ASP.NET SignalR is a powerful library that…
Topics: ASP.NET Core SignalR
Read articleLocal RAG in C#: Connect Your AI to External Knowledge
medium.com
Generative AI is powerful, but LLMs alone often fall short when it comes to delivering factually grounded, up-to-date, or domain-specific…
Read articleBuilding an Invoice Entry System with Angular, ASP.NET Core, Dapper, CQRS, and SQL Server
c-sharpcorner.com
Learn how Vibe Coding revolutionizes retail merchandising by replacing static seasonal plans with AI-powered, multi-agent systems that detect trends, align inventory, adjust pricing, and personalize c...
Topics: ASP.NET Core CQRS Dapper
Read article5 Subtle .NET Tips That Prevent Bugs and Boost Performance
blog.stackademic.com
Write safer, faster code by understanding async waits, null safety, and struct initialization tricks. Continue reading on Stackademic »
Topics: .NET Core Performance
Read article.NET 10 Preview 7 is now available!
devblogs.microsoft.com
Today, we are excited to announce the seventh preview release of .NET 10 with enhancements across the .NET Runtime, SDK, libraries, C#, ASP.NET Core, Blazor, .NET MAUI, and more. Check out the full re...
Topics: ASP.NET Core Blazor .NET 10
Read articleIn any problem situation return ProblemDetails | IProblemDetailsService in ASP.NET Core
medium.com
ProblemDetails is the standard way to indicate that your application has faced a problem. It can represent any type of issue — from…
Topics: ASP.NET Core Web API
Read articleWhy Your C# Structs Might Be Slower Than Classes — Microsoft’s Own Performance Rules
blog.devgenius.io
🧠 The Day Structs Slowed Our API Continue reading on Dev Genius »
Topics: ASP.NET Core Redis
Read articleDistributed Caching In ASP.NET Core With Redis
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Topics: C# Performance
Read article