Build fair-use per customer with partitioned token buckets and a simple tenant resolver in ASP.NET Core 10. See what .NET 10 upgrades in rate limiting to keep your SaaS fast and polite.
#aspnetcore #dotnet #ratelimiting
Build fair-use per customer with partitioned token buckets and a simple tenant resolver in ASP.NET Core 10. See what .NET 10 upgrades in rate limiting to keep your SaaS fast and polite.
#aspnetcore #dotnet #ratelimiting
Turn one-page marathons into confidence-building steps with .NET MAUI and Syncfusion Tab View by gating navigation with validation. Pick up state-driven tab patterns and modular views that make complex forms feel simple.
#dotnet #maui #csharp
Tired of telescoping constructors and messy init logic? The C# Builder pattern makes complex object creation feel as simple as ordering a pizza, with practical examples and gotchas.
#csharp #dotnet
Make flaky Azure SQL handshakes actionable by logging ClientConnectionId in your .NET connection flow with JDBC-style timestamps. A compact console sample shows how to correlate retries with backend diagnostics for quicker root cause analysis.
#csharp #dotnet #azuresql
Don't get bitten by using .ToLower() for string comparisons! This video shows the problems with it, the dreaded Turkish i, and what to use instead.
#dotnet #csharp
VS 2026 gets a flow boost with Copilot generated tests, call stack explainers, a test aware profiler, a WinForms expert, and snappier Razor hot reload. Friendly upgrades that help you ship steadier without heroics.
#csharp #dotnet #visualstudio
.NET 11 releases big updates to async/await and Nick covers it all in this YouTube video, including performance boosts.
#dotnet #csharp
Passkeys are great until your amr claim says the wrong thing. Damien Bowden covers returning pop correctly and requiring phishing resistant auth via acr_values in ASP.NET Core.
#aspnetcore #openidconnect #passkeys
Turn on SBOM generation for your NuGet packages so dotnet pack tucks an SPDX manifest right inside, courtesy of Microsoft.Sbom.Targets. A small csproj change pays off in clearer licensing and a stronger supply chain story.
#dotnet #NuGet #security
Hidden .NET MAUI Button perks like FontAutoScalingEnabled, TextTransform, and LineBreakMode can quickly boost accessibility and design with simple XAML. Practical snippets cover spacing, wrapping, and rounding for a cleaner, friendlier UI.
#dotnet #maui #csharp
Build interactive diagrams in Blazor the easy way using shapes, connections and smart layouts with Telerik's Diagram component. Quick tips for labels, caps and selection handles included.
#blazor #dotnet #csharp
One tidy API for OpenAI, Azure OpenAI, and Ollama in .NET, plus typed structured outputs, middleware, and OpenTelemetry that plays nicely with Aspire. A practical primer to turn chatty demos into maintainable intelligent apps.
#dotnet #csharp #ai
HybridCache is fast, but without a backplane your other nodes keep stale data. A tidy Redis Pub/Sub pattern for real-time invalidation and a FusionCache alternative with a built-in backplane.
#dotnet #csharp #redis
Give your MAUI app a voice of its own with custom fonts, registered via ConfigureFonts and used with a tidy FontFamily alias. Bonus: when Android's system fonts do the job, you keep the package lean.
#dotnet #dotnetmaui #xaml
Damien Brady joins .NET Rocks! to unpack AI assisted reliability in 2026, from using LLMs to spot issues to tightening up code reviews and tests.
#dotnet #csharp #ai
Let's talk Squad with Bruno Capuano and Brady Gaster on this edition of the .NET AI Community Standup. Squad is a Copilot team of agents with different specialties that can amp up your AI-assisted development.
#dotnet #csharp #ai
Watch Daniel Hindrikes break down what XAML source generation is, how it works, and why it can improve performance, reliability, and your overall development experience.
#csharp #dotnet #dotnetmaui
Join Jonathan Tower as he welcomes Matt Soucoup to break down GitHub Copilot's App Modernization agent for .NET and how it guides assessments, upgrade plans, and hands-on execution for legacy apps.
#dotnet #csharp #copilot
.NET 10 brings real wins to Blazor: smaller payloads, the PersistentState attribute, new JS interop helpers and NavigationManager.NotFound for true 404s. Claudio Bernasconi shows off practical upgrades that make apps faster and code cleaner.
#blazor #dotnet #aspnetcore
Less IServiceCollection noise, more working code with Needlr auto discovery for C#. Covers the core conventions for discovery plus practical notes on lifetimes, exclusions, and multi interface types.
#csharp #dotnet #dependencyinjection
Turn branching C# into clear, composable pipelines with practical function composition patterns from Mori. See how small pure functions lead to code that is easier to test, maintain, and optimize.
#csharp #dotnet #functionalprogramming
Uno Platform 6.5 serves up practical wins for your dev loop. Sam Basu demonstrates agent-first AI in Studio and a default Hot Design flow to Unicode TextBox, stronger WebView2, and WASM drag and drop.
#dotnet #csharp #unoplatform
Upgrade T4 templates to modern .NET with a simple MSBuild recipe, not a rewrite. This post highlights TextTransformCore, nested outputs, and the assembly gotchas you will hit first.
#dotnet #csharp #msbuild
Abstract Factory in C# the practical way: define product families, build stateless factories, and wire it into DI with clean tests and no messy conditionals. Nick Cosentino keeps things extensible without the if ladder tax.
#csharp #dotnet
RAG in .NET without standing up cloud vectors? A tiny NuGet shows how to generate local embeddings, batch them, and compare with cosine similarity for quick experiments.
#csharp #dotnet #ai
Real-time camera streams without the gremlins. A friendly deep dive into Cognex VisionPro with C#, covering robust acquisition patterns and leak-free lifetime management.
#csharp #dotnet #machinevision
Stuck with stale images in WebView2 previews? Rick Strahl shares C# patterns for a real hard refresh, from URL resets to cache busting and DevTools tricks.
#csharp #dotnet #webview2
Think transactions keep you safe? This post demystifies SQL Server isolation in .NET, then shows EF Core concurrency, outbox, and idempotency patterns that make services resilient under pressure.
#dotnet #efcore #sqlserver
Ship the same .NET app from local debug to prod with Aspire's run, deploy, and publish flow, all driven by one AppHost. This post uses a Blazor plus SQL Server sample to show container images, volumes, and GitHub Actions working together.
#dotnet #aspire #containers