MAUI MVU, cold starts, and performance
Issue #278 spans MAUI MVU, Azure Functions cold-start tuning, C# and LINQ performance, plus practical posts on testing, DI, SignalR, and MongoDB.
Jasen's top three picks
- 1 MauiReactor: An MVU Approach for .NET MAUI
devblogs.microsoft.com
MVU in MAUI is a nice reminder that UI architecture doesn’t have to be one-size-fits-all.
- 2 How to Build SaaS Fast | Reduce SaaS MVP Launch Time
adilyousaf88.medium.com
A cold-start guide for Azure Functions is always useful when latency matters.
- 3 .NET 10 Deep Dive: Ad‑hoc tools, the new dnx runner, and File‑based apps superpowers
medium.com
The LINQ and modern C# performance pieces are practical reads if you care about shaving time off hot paths.
Editor's note
I pulled together a deliberately mixed lineup this time: app architecture, performance tuning, AI, testing, and a few practical how-tos. The MAUIReactor MVU post stands out for teams exploring alternative UI patterns in .NET MAUI, while the Azure Functions cold-start piece is the kind of operational advice that pays off immediately. I also liked the LINQ and modern C# performance articles because they get into the small code choices that add up in real apps.
Today's articles
MauiReactor: An MVU Approach for .NET MAUI
devblogs.microsoft.com
A look at how the Model-View-Update pattern can complement the .NET MAUI ecosystem The post MauiReactor: An MVU Approach for .NET MAUI appeared first on .NET Blog.
Topics: .NET MAUI
Read articleHow to Build SaaS Fast | Reduce SaaS MVP Launch Time
adilyousaf88.medium.com
Launching a SaaS product isn’t just about writing code — it’s a race against time. In today’s hyper-competitive market, the difference…
Topics: ASP.NET Core Azure
Read article.NET 10 Deep Dive: Ad‑hoc tools, the new dnx runner, and File‑based apps superpowers
medium.com
In .NET 10, the CLI picked up a trio of quality‑of‑life upgrades that remove friction from everyday dev and CI workflows:
Read articleCaching Layers in .NET with Redis, MemoryCache, and Policy Fallbacks
medium.com
How layered caching strategies in .NET can supercharge performance while keeping your system resilient.
Topics: Performance Redis
Read articleA Developer’s Guide to AI in .NET Using Azure Cognitive Services
medium.com
Difficulty Level: Intermediate / Pro Developer
Read articleThe C# Keyword That Makes Your Exceptions Free (But Nobody Uses It)
medium.com
Why This Blog Matters Continue reading on Dev Genius »
Topics: C#
Read articleAJAX The power behind Dynamic Web pages
c-sharpcorner.com
AJAX enables fast, interactive, and user-friendly web applications by updating data without reloading pages. It improves performance, enhances user experience, supports real-time updates, and remains ...
Topics: ASP.NET Core Web API
Read articleMinimizing Cold Starts in Azure Functions for .NET
medium.com
Pre-warming, scaling tiers, and smart architecture choices that keep your serverless apps snappy.
Topics: Azure Functions Performance
Read articleIf you need to generate realistic fake data in C#, try this library
medium.com
From time to time, you may need to populate data in your database — for testing or just for mocking. Bogus gives us a simple way to do…
Topics: C#
Read articleTop 10 Most Asked .NET/Web API Interview Questions
medium.com
Taming Your Data: A Practical Guide to the Repository Pattern in .NET
Topics: ASP.NET Core Web API
Read articleAdding TDD to Legacy .NET Code Without Breaking Production
medium.com
How to gradually introduce tests to existing Windows Forms, WPF, and WCF applications when “don’t break anything” is your #1 priority
Topics: Test-Driven Development Unit Testing
Read articleMaster Real-Time Apps with SignalR, .NET 10, and Angular/React
medium.com
Why SignalR outshines raw WebSockets and other real-time options
Read articleBoost Your .NET App Performance with MongoDB Query Optimization
itnext.io
Learn practical techniques to speed up MongoDB queries, reduce latency, and scale your .NET applications effortlessly. Continue reading on ITNEXT »
Topics: MongoDB Performance
Read articleTop 10 Modern C# Performance Features That Made My .NET Apps 3x Faster
medium.com
As a .NET developer working in high-stakes domains like legal practice management and insurance verification systems, performance isn’t… Continue reading on ILLUMINATION’S MIRROR »
Topics: C# Performance
Read articleASP.NET Community Standup - Prevent login redirects for APIs
youtube.com
CI/CD for .NET Projects: Seamless NuGet Publishing via GitHub Workflows
Topics: ASP.NET Core Web API
Read articleTop 5 Real-World Use Cases of Dependency Injection in .NET
malshikay.medium.com
Practical Examples of Dependency Injection in .NET for Real-World Applications
Topics: ASP.NET Core Solid Principles
Read articleThe Union Revolution in C#: Closed Hierarchies, Case Declarations, and Safer APIs
medium.com
If you’ve ever wished your C# code could precisely model “one of these types, but never anything else”, discriminated unions are about to…
Topics: C#
Read articleHow .NET Developers Accelerate Enterprise App Development
medium.com
Enterprises face new demands to speed up innovation, growth, and value delivery. Whether it’s streamlining processes or developing…
Topics: ASP.NET Core .NET Core
Read articleFrom IVRs to Insight: How I’m Architecting a Scalable Phone Queue Service in .NET
blog.stackademic.com
TL;DR: Start modular, think in bounded contexts, pipe every call through an async backbone, and let CQRS/outbox keep your data honest… Continue reading on Stackademic »
Topics: CQRS Domain-Driven Design Service Bus
Read articleThe One Line That Made My LINQ 5× Faster (You’re Still Writing It Wrong)
blog.devgenius.io
Why This Blog Matters Continue reading on Dev Genius »
Topics: EF Core Performance
Read articleHow to Print PDF files in C# (Developer Tutorial)
c-sharpcorner.com
IronPrint is a C#/.NET library for direct, reliable PDF printing. It supports silent printing, multi-page documents, duplex, and custom printer settings, enabling automated, professional printing for ...
Topics: C#
Read article