Dev Containers, Polly, EF Core loading
A varied .NET roundup on onboarding, resilience, EF Core loading, C# 14, Serilog, testing, and Azure cost savings for working developers.
Jasen's top three picks
- 1 Faster Onboarding with Dev Containers in VS Code
medium.com
A practical walkthrough for shaving time off new-project setup with Dev Containers in VS Code.
- 2 How To Add Fault Handling In .NET With Polly
medium.com
A resilience refresher on using Polly to handle transient faults cleanly in ASP.NET Core.
- 3 Unlock Cloud Savings for Linux VMs
youtube.com
A cloud-cost angle on moving Linux workloads to Azure with subscription flexibility and minimal downtime.
Editor's note
I curated a deliberately mixed lineup this time: from dev environment onboarding and fault handling to C# 14 and logging. The Application Insights code optimizations piece stands out for its practical performance angle, and the Dev Containers article is a solid reminder that setup friction still wastes real developer time.
Today's articles
Faster Onboarding with Dev Containers in VS Code
medium.com
if you’ve ever joined a new project; you probably know the pain: hours (sometimes days) spent setting up your local environment —…
Topics: GitHub Visual Studio Code
Read articleHow To Add Fault Handling In .NET With Polly
medium.com
Building resilient ASP.NET Core applications requires proper fault handling for transient failures, network issues, and downstream service…
Topics: ASP.NET Core
Read articleUnlock Cloud Savings for Linux VMs
youtube.com
This episode covers how organizations can modernize infrastructure, reduce cloud costs (by up to 76%!), and migrate existing Red Hat and SUSE Linux subscriptions to Azure with zero downtime and flexib...
Topics: Azure
Read articleC#: The Versatile Language for Modern Development
c-sharpcorner.com
This article covers its key features, setup, applications (web, desktop, mobile, games, cloud, IoT), advantages, limitations, and real-world usage. Discover why C# is a top choice for modern software ...
Topics: C#
Read articleUntangling Your Code: A Beginner’s Guide to MVC in .NET
medium.com
Structuring Your Applications for Clarity, Maintainability, and Scale
Topics: ASP.NET Core ASP.NET MVC
Read articleApplication Insights Code Optimizations for .NET Apps
devblogs.microsoft.com
Learn how Application Insights Code Optimizations helps .NET developers identify performance bottlenecks and get AI-powered recommendations through GitHub Copilot integration. The post Application In...
Topics: Application Insights GitHub Copilot Performance
Read articleHow to Choose the Right Loading Strategy in EF Core?
c-sharpcorner.com
This article dives into Eager Loading and Lazy Loading strategies, explaining their pros, cons, and practical examples using Customers and Orders. Learn when to use each approach to optimize database ...
Topics: EF Core
Read articleParallelism in C#: Task, Thread, or Dataflow?
medium.com
When to Use Threads — Task, Thread, or Dataflow?
Topics: C# Performance
Read article🤖 Chatbots: Revolutionizing the Way We Communicate
c-sharpcorner.com
Explore the world of chatbots! This article delves into how AI-powered chatbots are revolutionizing communication across industries. Learn about their key features, applications in customer service, e...
Topics: OpenAI
Read articleC# Performance Hack: Use record struct for Small, Immutable Models
c-sharpcorner.com
This optimization avoids heap allocation and provides value-based equality, unlike classes. See how record struct dramatically improves efficiency when comparing immutable objects, offering a signific...
Topics: C# Performance
Read articleBuild Master-Detail Pages in ASP.NET Core MVC — Part 4
bipinjoshi.net
In Part 2 and Part 3 of this series, we completed the implementation of the TeamsController and TeamMembersController, respectively. So far, each controller action has returned the Main view, supplyin...
Topics: ASP.NET Core ASP.NET MVC
Read article5 Quick Tips on .NET Project Structuring in 2025
medium.com
When I first started working with .NET, I’ll admit — my folder structure looked like a teenager’s messy bedroom. Controllers everywhere…
Topics: .NET Core
Read articleC# 14 Is Here: New Features, Hidden Details, and What You Need to Know
medium.com
With the arrival of .NET 10 RC1, we also get our hands on C# 14, the latest evolution of Microsoft’s language.
Read articlePrompt Files and Instructions Files Explained - .NET Blog
devblogs.microsoft.com
Unlocking the Power of GitHub Copilot for .NET Developers with Instruction Files and Prompt Files
Topics: GitHub Copilot
Read articleDeep Dive: Using the Domain Event Pattern in DDD, Clean Architecture, and .NET 9
medium.com
If you want the full source code, join our community: Here
Topics: Clean Architecture Domain-Driven Design Event Sourcing
Read articleMastering Logging in .NET with Serilog — Part 4
medium.com
Serilog Tutorial Series — Part 4: Advanced Scenarios & Best Practices
Topics: Serilog
Read articleTypes of Unit Tests in C# — Master Testing Like a Pro
medium.com
Complete guide to unit testing in C#. Learn all types of tests: basic unit tests, mocks, parametrised tests, async testing, property-based…
Topics: Unit Testing xUnit.net
Read articleWhy .NET 8 Is the Best Upgrade You’re Ignoring
blog.devgenius.io
Hook: After chasing shiny features in .NET 9, .NET 8 turned out to be the upgrade that saved real dollars — without sacrificing… Continue reading on Dev Genius »
Topics: .NET 8
Read articleSend Email as Current User in SPFx with Microsoft Graph
c-sharpcorner.com
Learn how to send emails as the current user from your SharePoint Framework (SPFx) web parts using Microsoft Graph. This comprehensive guide covers everything from configuring delegated permissions (M...
Topics: Authentication Azure
Read article