EF Core, Azure Functions, and .NET 10 highlights
This issue spans EF Core, Azure Functions scaling and logging, MediatR validation, .NET 10 previews, and practical testing and deployment tips.
Jasen's top three picks
- 1 Entity Framework Core Nedir? .NET Geliştiricisinin Veritabanı İle İmtihanını Bitiren Araç
medium.com
A straightforward EF Core primer for readers who want the basics explained in plain language.
- 2 Azure Functions Timeouts and Auto-Scaling in Real-Time Healthcare Diagnostics
c-sharpcorner.com
Azure Functions shows up twice here, once for scaling and once for observability—both are real-world serverless concerns.
- 3 How To Implement Validation With MediatR And FluentValidation | Clean Architecture, DDD, .NET
medium.com
The MediatR + FluentValidation piece is a solid reminder that input rules belong close to the request pipeline.
Editor's note
I put together a deliberately mixed issue this week: database work, serverless ops, testing, and a few architecture pieces. The EF Core intro and the Azure Functions timeout/observability articles stood out because they tackle real pain points with practical examples. I also liked the source-generator take on replacing AutoMapper, since it reflects a real production tradeoff rather than a theory-only discussion.
Today's articles
Entity Framework Core Nedir? .NET Geliştiricisinin Veritabanı İle İmtihanını Bitiren Araç
medium.com
Bir önceki yazımızda ORM (Object-Relational Mapping) kavramının ne olduğunu ve yazılım ile veritabanı arasındaki o “çeviri” problemini…
Topics: EF Core
Read articleAzure Functions Timeouts and Auto-Scaling in Real-Time Healthcare Diagnostics
c-sharpcorner.com
Explore Azure Functions timeouts and auto-scaling strategies in a real-world healthcare diagnostics scenario. Learn how MediScan AI overcame timeout errors and scaling challenges in their serverless p...
Topics: Azure Functions
Read articleHow To Implement Validation With MediatR And FluentValidation | Clean Architecture, DDD, .NET
medium.com
Validation isn’t glamorous — but it’s the guardian of your system’s integrity. It keeps invalid data from creeping into your domain…
Topics: Clean Architecture FluentValidation MediatR
Read articleCreate AI videos with Sora-2 using .NET
medium.com
Generate realistic AI videos directly from text, powered by OpenAI’s Sora-2 and a .NET console app. Continue reading on Medialesson »
Read articleObservability in Azure Functions: Enabling Application Insights and Custom Logging for Real-Time Fraud Detection
c-sharpcorner.com
Master observability in Azure Functions for real-time fraud detection! Learn to enable Application Insights, implement custom structured logging with Python, and gain deep insights into transaction be...
Topics: Application Insights Azure Functions OpenTelemetry
Read articleDTO (Data Transfer Object)
medium.com
DTO (Data Transfer Object) Nedir?
Topics: Design Patterns
Read articleWhy We Left AutoMapper for .NET Source Generators
levelup.gitconnected.com
Two production failures, 480 DTOs, and one compiler feature that changed everything Continue reading on Level Up Coding »
Topics: AutoMapper Performance Source Generators
Read articleSOLID Principles in C#: Building Software That Lasts
c-sharpcorner.com
Unlock the secrets to robust and maintainable C# code with the SOLID principles! This article introduces the five fundamental design guidelines (SRP, OCP, LSP, ISP, DIP) that every C# developer should...
Topics: C# Solid Principles
Read articleTesting HttpClient in .NET without Moq or NSubstitute
medium.com
How to unit test HTTP clients in .NET without relying on mocking frameworks (Moq or NSubstitute) using DelegatingHandler.
Topics: .NET Core Unit Testing
Read articleUsing WebProxy in C# to Access Internet in Restricted Networks
c-sharpcorner.com
Learn how to implement a WebProxy in C# to bypass network restrictions and access the internet in corporate environments. This guide provides a reusable method for creating and configuring a proxy, ha...
Read articleBackground Jobs Revolution: Mastering Automated Processing in ASP.NET Core (Part - 30 of 40)
c-sharpcorner.com
Revolutionize your ASP.NET Core applications with robust background job processing! This comprehensive guide, part 30 of 40, covers everything from IHostedService to Hangfire, Quartz.NET, and Coravel....
Topics: ASP.NET Core Azure Functions
Read articleConcurrency — The Art of Managing Many Things at Once
medium.com
You’ve seen threads. You’ve seen async. But now it’s time to understand what both of them really belong to: concurrency.
Topics: .NET Core Performance
Read articleInterface Segregation Principle (ISP) in C#: Keep Interfaces Lean
c-sharpcorner.com
Master the Interface Segregation Principle (ISP) in C#! Learn to design lean, focused interfaces by avoiding bloated, general-purpose ones. This article provides practical C# examples demonstrating ho...
Topics: Solid Principles
Read articleWhen LINQ meets RxJS: Thinking in queries on the frontend
medium.com
The first time I saw switchMap, I thought it was LINQ’s long-lost cousin who moved to the frontend and changed their name.
Topics: C# Design Patterns
Read articleFour things to remember about Sitecore Search
blog.jermdavis.dev
Anyone who's been doing Sitecore DXP for a while will be fairly comfortable with Solr and how search works under the Content Search APIs. But if you're moving to the newer SaaS products then you're no...
Topics: .NET Core
Read articleDeploying a .NET app to Azure using Docker, ACR, App Service, and GitHub Actions — Step-by-step
medium.com
This document explains, in a concise, copy-pasteable way, how to:
Topics: Azure Docker GitHub Actions
Read articleWhat’s new in .NET 10
medium.com
Explore the most interesting new features in C# 14, ASP.NET Core, and .NET 10.
Topics: ASP.NET Core C# .NET 10
Read articleTop 10 Things You Can Expect from .NET 10 in 2025
medium.com
Microsoft has just announced the release candidate for its upcoming .NET 10 update in 2025. Let’s explore the key features it may bring.
Topics: .NET 10
Read articleSimplify Debugging in .NET with DebuggerDisplay
c-sharpcorner.com
Simplify .NET debugging with [DebuggerDisplay]! Customize object display in Visual Studio for clearer data insights. Boost productivity & understand complex models faster. Works from .NET 2.0 to 9...
Topics: Profiling Visual Studio
Read articleThis One C# Keyword Replaced an Entire Design Pattern (And Nobody Noticed)
medium.com
I deleted 132 lines of Builder pattern code after switching to record struct + with + required.
Topics: C# Design Patterns
Read article⚡ Asynchronous Programming — Doing More Without Waiting
medium.com
At some point, every developer meets the keyword async and thinks:
Topics: .NET Core
Read articleStop Reacting, Start Predicting: The Autonomous AI Agent Revolutionizing Enterprise SaaS Marketing
c-sharpcorner.com
Discover how autonomous AI agents are revolutionizing enterprise SaaS marketing! This article explores the Autonomous Campaign Planner, showcasing its real-world application at CloudScale Inc. Learn h...
Read article11 Practical Ways to Write Faster SQL with Dapper in .NET 9 (Clean Architecture, Copy-Paste Ready)
medium.com
If you want the full source code, join our community: Here
Topics: Clean Architecture Dapper SQL Server
Read article