ASP.NET Core, MAUI, SQL Server vectors
Issue #332 covers API performance, MAUI iOS widgets, EF Core security, JWT claims, LINQ pitfalls, observability, and SQL Server vectors.
Jasen's top three picks
- 1 How to Make Your ASP.NET Core APIs Fast: Practical Optimization Tips
medium.com
Fast API tweaks you can apply without a rewrite.
- 2 Creating iOS Widgets with MAUI — Part 2: Bundling iOS Widget
ferrywlto.medium.com
MAUI iOS widgets continue to get more practical.
- 3 DTOs, ViewModel and Domain Model in C#
medium.com
Good reminder that security mistakes often start in the model layer.
Editor's note
I put together a varied mix this time, with practical API tuning, UI work in MAUI, and a few architecture pieces that are worth a careful read. The ASP.NET Core performance tips and the SQL Server 2025 vectors post stood out for being immediately useful to teams shipping real systems.
Today's articles
How to Make Your ASP.NET Core APIs Fast: Practical Optimization Tips
medium.com
A simple and effective way to make your ASP.NET Core APIs faster without rewriting the entire codebase.
Topics: ASP.NET Core Performance
Read articleCreating iOS Widgets with MAUI — Part 2: Bundling iOS Widget
ferrywlto.medium.com
This is the second part of the series. In this post we will explore how to create a Hello World widget in iOS and have our MAUI app work…
Read articleDTOs, ViewModel and Domain Model in C#
medium.com
DTOs, ViewModels, and Domain Models each play a unique role in clean and maintainable architecture. They help separate business logic, UI…
Topics: Clean Architecture C#
Read articleMethod Chaining vs Fluent Approach in C#
dotnetfullstackdev.medium.com
A Deep, Story-Driven Explanation That Finally Makes the Difference Clear
Topics: C# Design Patterns
Read articlePreventing Over-Posting and Under-Posting in EF Core Models
medium.com
A practical guide to securing your .NET APIs by preventing over-posting, under-posting, and unintended EF Core data updates.
Read articleDevelop Faster with VS Code for the Web – Azure: Your Browser-Based Dev Environment
devblogs.microsoft.com
Developers can now move from idea to Azure-ready code in minutes with VS Code for the Web – Azure. This browser-based environment removes setup time, reduces friction, and gives you immediate access t...
Topics: Azure Visual Studio Code
Read articleUsing Custom JWT Claims for Authorization in ASP.NET
medium.com
“JWT claims are like a passport: they tell the system not just who you are, but what you’re allowed to do.”
Topics: Authorization JWT
Read articleCorporate Boondoggles: Lumber Apocalypse and Linear Programming, C# Comes in Clutch
medium.com
boon·dog·gle: work or activity that is wasteful or pointless but gives the appearance of having value.
Topics: C# Design Patterns
Read articleCompanies complaining .NET moves too fast should just pay for post-EOL support
andrewlock.net
In this post I describe a solution to .NET "releasing too quickly": just pay for support of older versions, such as HeroDevs' Never Ending Support for .NET 6
Topics: .NET Core Performance
Read articleAvoid These Common LINQ Mistakes: First(), FirstOrDefault(), Single(), SingleOrDefault() Explained
medium.com
When working with LINQ in C#, developers constantly reach for First(), FirstOrDefault(), Single(), or SingleOrDefault(). But despite…
Read articleSQL Server 2025 Embraces Vectors: setting the foundation for empowering your data with AI
devblogs.microsoft.com
SQL Server 2025 marks a major milestone in database innovation by introducing native support for VECTOR data types and vector functions. These are now fully available in the freshly released SQL Serve...
Topics: OpenAI SQL Server
Read articleA step-by-step guide to modernizing .NET applications with GitHub Copilot agent mode - .NET Blog
devblogs.microsoft.com
Learn how Visual Studio 2026 and GitHub Copilot app modernization upgrade .NET versions and frameworks, fix build issues, and migrate apps to Azure with less manual effort
Topics: GitHub Copilot Visual Studio
Read articleWhere Should Repository Interfaces Live in Clean Architecture?
medium.com
Put repository interfaces in Application as ports when you truly need them (usually for aggregate writes). For reads, skip repos — query…
Topics: Clean Architecture CQRS
Read articleDavide's Code and Architecture Notes - Metrics, Logs, and Traces: the three pillars of Observability
code4it.dev
Learn the differences between metrics, logs, and traces - the three pillars of observability in distribut ed systems - and how to use them effectively
Topics: OpenTelemetry
Read articleBest ASP.NET Development Company in the USA
medium.com
In today’s rapidly evolving digital landscape, choosing the best ASP.NET development company in the USA can significantly influence your…
Topics: ASP.NET Core ASP.NET MVC
Read articleInterpolated Verbatim Strings ($@””) ve Raw String Literals (“””)
medium.com
Write Faster SQL Queries With Dapper in .NET 9 | Clean Architecture With Full Codes
Topics: C# System.Text.Json
Read articleStructuring Dependency Injection in ASP.NET Core 9 — The Right Way (Clean Architecture + Full Code)
medium.com
PART 1 — The Foundations, DI Philosophy, and Setting Up Clean Architecture for Real-World Applications Continue reading on CodeToDeploy »
Topics: ASP.NET Core Clean Architecture
Read articleUnderstanding Dependency Injection (DI) In ASP.NET Core — A Beginner-Friendly Guide
c-sharpcorner.com
Unlock the power of Dependency Injection (DI) in ASP.NET Core! This beginner-friendly guide provides clear explanations and practical examples for cleaner, testable code.
Topics: ASP.NET Core Authentication
Read article.NET CancellationToken Deep Dive
medium.com
CancellationToken হলো .NET-এর একটি mechanism যা asynchronous বা long-running task গুলোর cancel / abort করার সুযোগ দেয়
Read articleInside Kestrel: The Beating Heart of ASP.NET Core
bipinjoshi.net
When you build an ASP.NET Core application and run it with a simple dotnet run, something powerful starts working quietly in the background — the Kestrel web server. It listens for HTTP requests, mana...
Topics: ASP.NET Core Performance
Read article