Logging, EF Core, and .NET 10 upgrade reasons
A varied .NET roundup with Serilog logging, EF Core Fluent API, .NET 10 upgrade reasons, MAUI, SignalR, and Azure DevOps updates.
Jasen's top three picks
- 1 Modern Logging in .NET with Serilog
c-sharpcorner.com
Serilog gets a practical treatment here, with sinks and structured logging framed around real troubleshooting and observability needs.
- 2 An ASP.NET Core + React Template Overview
medium.com
This ASP.NET Core plus React overview pairs nicely with the Minimal API myths article, especially if you’re sorting hype from actual app design tradeoffs.
- 3 Master Dependency Injection in .NET Without Overthinking It
medium.com
Dependency Injection remains interview bait for a reason, and this one keeps it simple instead of turning it into ceremony.
Editor's note
I pulled together a mixed issue on purpose: logging, architecture, data access, UI, and platform news all sit side by side here. The Serilog piece is a solid refresher on structured logging, and the EF Core Fluent API article is useful if you’re cleaning up entity configuration. I also liked the .NET 10 upgrade rundown for giving practical reasons beyond just “new version, new features.”
Today's articles
Modern Logging in .NET with Serilog
c-sharpcorner.com
Implement structured logging in .NET Core with Serilog. Enhance app monitoring using sinks for consoles, files, SQL, and more. Improve debugging and analysis.
Read articleAn ASP.NET Core + React Template Overview
medium.com
5 Minimal API myths and the real truth
Read articleMaster Dependency Injection in .NET Without Overthinking It
medium.com
If you’ve ever prepared for a .NET interview, Dependency Injection almost always shows up. Sometimes, as a definition question. Sometimes… Continue reading on Write A Catalyst »
Read articleAngular + ASP.NET Core: Building a Real-Time App with SignalR
medium.com
Introduction
Read article.NET MAUI Apps Architecture and Use Cases
medium.com
Developers love .NET MAUI apps for crafting high-performance solutions across multiple platforms from one codebase.
Read articleAzure Boards additional field filters (private preview)
devblogs.microsoft.com
We’re introducing a limited private preview that allows you to add additional fields as filters on backlog and Kanban boards. This long-requested feature helps teams tailor their views, focus on the w...
Read articleContext-Driven Development: Agent Skills for Microsoft Foundry and Azure
devblogs.microsoft.com
Code will be generated, not written. Working with 100+ companies, I have seen this firsthand: most enterprise workloads taking dependencies on AI SDKs are usually net-new microservices. Hardly anyone ...
Read articleFactory Method Pattern in C#
c-sharpcorner.com
Learn how to implement the Factory Method Pattern in C# with dependency injection for loosely coupled object creation. Improve code maintainability and extensibility.
Read articleConfiguring Entities with Fluent API in EF Core - Entity Configuration Best Practices
codewithmukesh.com
Entity configuration is where your domain meets the database. Learn Fluent API in EF Core—why it beats Data Annotations for complex scenarios, how to organize configurations with IEntityTypeConfigurat...
Read article10 Reasons to Upgrade to .NET 10
antondevtips.com
Explore reasons to upgrade to .NET 10 and C# 14: Long-Term Support (LTS) Release, Performance improvements in ASP.NET Core and .NET, File-Based Apps, Server-Sent Events (SSE), Extension Members in C#
Read article.NET MAUI Input validation
medium.com
An overview on how input fields can be validated in .NET MAUI
Read articleMaking LINQ Fast: A Simple Guide to High-Performance Queries
medium.com
We’ve all been there: you write a beautiful, one-line LINQ query that feels like a work of art. It’s readable, it’s elegant, and it does…
Read articleWhy .NET Stops at string.IsNullOrEmpty()
medium.com
Convenience ends where ambiguity begins.
Read article