Observability, deployment, and performance
Observability, Azure CI/CD, EF Core tuning, API security, AI agents, and .NET 10 file-based apps—practical reads for working developers.
Jasen's top three picks
- 1 ASP.NET Core Monitoring & Logging Mastery | Proactive Application Insights (Part-34 of 40)
c-sharpcorner.com
A solid observability primer that ties together logging, health checks, and App Insights before production pain does.
- 2 Deploy Azure Apps Automatically Using Azure Pipelines (YAML)
c-sharpcorner.com
A straightforward YAML pipeline walkthrough for shipping Azure apps without hand-driven release chores.
- 3 ⚡ One Trick To Improve EF Core Performance Using Query Splitting.
medium.com
A small EF Core change with outsized impact: AsSplitQuery() can tame include-heavy queries in hot paths.
Editor's note
I put together a deliberately mixed lineup today: some production-hardened guidance, some framework history, and a few forward-looking pieces. The Application Insights and request smuggling articles stand out for real-world ops and security impact, while the EF Core and middleware posts are the kind of practical improvements you can apply right away.
Today's articles
ASP.NET Core Monitoring & Logging Mastery | Proactive Application Insights (Part-34 of 40)
c-sharpcorner.com
Master ASP.NET Core monitoring and logging with this comprehensive guide. Learn to proactively use Application Insights, structured logging, health checks, and alerting to build observable, production...
Topics: Application Insights ASP.NET Core OpenTelemetry
Read articleDeploy Azure Apps Automatically Using Azure Pipelines (YAML)
c-sharpcorner.com
Automate Azure app deployments with Azure Pipelines using YAML! This tutorial guides you through creating a CI/CD pipeline for seamless updates to App Service or Function Apps.
Topics: ASP.NET Core Azure Azure DevOps
Read article⚡ One Trick To Improve EF Core Performance Using Query Splitting.
medium.com
Often the simplest change — AsSplitQuery() — yields the biggest production performance improvement when you’re using multiple Include()s.”…
Topics: EF Core Performance
Read articleIntroducing Custom Agents for .NET Developers: C# Expert & WinForms Expert - .NET Blog
devblogs.microsoft.com
Introducing C# Expert and WinForms Expert: experimental custom agents that help .NET developers write better code with GitHub Copilot.
Topics: .NET 10 GitHub Copilot
Read articleUnderstanding the worst .NET vulnerability ever: request smuggling and CVE-2025-55315
andrewlock.net
In this post I discuss request smuggling, the recent vulnerability in ASP.NET Core with a severity score of 9.9, and how attackers could exploit it
Topics: ASP.NET Core Security
Read articleUnderstanding HashSet in C#: Internal Working, Advanced Concepts & Performance Insights
medium.com
If you’ve worked with collections in C#, you’ve likely used List<T>, Dictionary<TKey, TValue>, or HashSet<T> — but do you really know how…
Topics: C# Performance
Read articleASP.NET Core Custom Middleware: Faster, Cleaner Pipelines
amarozka.dev
Learn to build and place custom middleware for logging, localization, and multi‑tenancy to speed up ASP.NET Core apps and simplify code. Continue reading on .Net Code Chronicles »
Topics: ASP.NET Core Performance
Read articleJoin us at .NET Conf: Dive into the future of development with Visual Studio 2026
devblogs.microsoft.com
We're thrilled to invite you to one of the most exciting events in the .NET ecosystem: .NET Conf. It runs from November 11th through the 13th and you’re invited! This annual virtual conference is a mu...
Topics: Visual Studio
Read articleBuild a Custom LangChain Chat Model from Scratch
c-sharpcorner.com
Learn how to create a fully customized chat model using LangChain, OpenAI API, and Python. Includes step-by-step implementation, architecture diagram, and optimization insights.
Read articlePurpose of UpdatePanel in ASP.NET WebForms
c-sharpcorner.com
Master ASP.NET WebForms UpdatePanel! Learn how to implement partial page updates, improve user experience, and avoid full page reloads with a real-time example.
Topics: ASP.NET Core .NET Framework
Read articleAsynchronous Programming in C#: async and await
c-sharpcorner.com
Unlock ASP.NET WebForms performance with async/await! Prevent page freezes during long operations like API calls. See a practical example & real-world use cases.
Topics: C# Performance
Read articleStop Overusing LINQ — This Pattern Is Faster
medium.com
(Because beauty has a cost in hot paths.)
Topics: C# Performance
Read articleFull-Stack ASP.NET Core Project: Build AI E-Commerce Platform with Cloud, Microservices & Blazor(Part-40 of 40)
c-sharpcorner.com
Build a full-stack AI e-commerce platform with ASP.NET Core 8, Blazor, and microservices. This comprehensive tutorial covers cloud deployment (Azure/AWS), real-time features (SignalR), and production ...
Topics: ASP.NET Core Azure Blazor
Read articleMastering the Magic of C#: From Basics to Brilliance
c-sharpcorner.com
Unlock the power of C#! This guide covers everything from basic syntax to advanced features like OOP, async programming, and pattern matching. Build web, mobile, and AI apps!
Topics: C#
Read articleWhat distinguishes a single Agent (AI Agent) vs a multi-agent system / Agentic AI system?
c-sharpcorner.com
Explore the difference between single AI agents and multi-agent (Agentic) AI systems. Learn how they collaborate, adapt, and automate complex tasks efficiently.
Read articledotnet run App.cs: why .NET 10’s file-based apps unlock a new wave of use cases
blog.devgenius.io
.NET 10 lets you run a single C# file directly — dotnet run App.cs — with no .csproj required. You can pull NuGet packages inline, switch… Continue reading on Dev Genius »
Read articleCreating Your First GitHub Repository
c-sharpcorner.com
Learn how to create your first GitHub repository with this comprehensive guide! Master the fundamentals of version control, collaboration, and project management. Discover the importance of README fil...
Topics: GitHub
Read article⚙️ Mastering Exception Handling in .NET Core — Complete Guide with Examples
c-sharpcorner.com
Master .NET Core exception handling! Learn try-catch, global handlers, middleware, custom exceptions, and logging for robust & user-friendly apps.
Topics: .NET Core Performance
Read articleAvoiding the “God Controller”: How to Refactor Your ASP.NET Core APIs
medium.com
Transform your large controllers into clean, testable, and maintainable code the right way.
Topics: ASP.NET Core Clean Architecture Minimal APIs
Read articleAPI Key Auth in .NET 9 (Clean Architecture, Minimal APIs) — A No-Drama, Copy-Paste Guide
medium.com
If you want the full source code, join our community: Here
Topics: C# Solid Principles
Read articleUnderstanding base() vs this() in C# Constructors — A Deep Dive
medium.com
“Constructors build the foundation of your class hierarchy — understanding how base() and this() work gives you full control over object…
Topics: C# .NET 9 Minimal APIs
Read articleMastering Facet: A guide to Type-Safe Projections in C#
medium.com
In this post, I want to highlight Facet’s features and demonstrate how to use them with concrete examples. From generating your DTO’s and…
Topics: C#
Read articleWhat Are Events in .NET Framework?
c-sharpcorner.com
Unlock the power of .NET events! Learn how publishers and subscribers communicate using delegates, creating responsive and decoupled applications. Master event handling in C#.
Topics: C# Source Generators
Read articleAkka.NET + Kubernetes: Everything You Need to Know
petabridge.com
Production lessons from years of running Akka.NET clusters at scale
Topics: C# .NET Framework
Read article