MAUI, EF Core, and auth hardening
A varied .NET roundup with MAUI resources, EF Core migrations and bulk retrieval, authentication hardening, HttpClientFactory, and more.
Jasen's top three picks
- 1 Essential .NET Maui Resources
medium.com
A solid MAUI collection here, including resources and a practical iOS widgets walkthrough.
- 2 Jordan’s .NET Guide to Advanced HttpClientFactory
medium.com
HttpClientFactory and EF Core show up twice, which is handy if you’re tuning real-world apps.
- 3 [C# Tip] How to create and access custom C# Attributes by using Reflection
code4it.dev
The auth hardening final chapter is the kind of article that saves teams from avoidable mistakes.
Editor's note
I kept this issue intentionally mixed, with MAUI, data access, security, and a few practical C# tips all in the same lineup. The EF Core bulk retrieval piece is useful if you’ve ever bumped into parameter limits, and the iOS widgets post is a nice hands-on MAUI example. I also like the authentication hardening article for wrapping up a long-running series with concrete security guidance.
Today's articles
Essential .NET Maui Resources
medium.com
.NET Maui is a Cross platform development framework for .NET developers which supports Mobile (iOS and Android), Tablet and Desktop…
Topics: .NET MAUI
Read articleJordan’s .NET Guide to Advanced HttpClientFactory
medium.com
In my other article, I covered the basics of using HttpClientFactory instead of HttpClient to prevent some common bugs like stale DNS, and…
Topics: ASP.NET Core
Read article[C# Tip] How to create and access custom C# Attributes by using Reflection
code4it.dev
In C#, Attributes are a handy mechanism to attach metadata to your classes, methods, properties, etc. In this article, we will see how to create custom Attributes and access them at runtime using Refl...
Topics: C# Source Generators
Read articleMaster EF Core Relationships & Migrations Like a Pro
nelsonyounus.medium.com
ASP.NET Community Standup - ASP.NET Core planning kickoff for .NET 11
Read articleEF Core Bulk Data Retrieval: 5 Methods You Should Know
antondevtips.com
Learn how to efficiently retrieve large datasets in Entity Framework Core without hitting SQL Server's 2,100 parameter limit. Discover 5 bulk data retrieval methods from Entity Framework Extensions th
Topics: EF Core Performance
Read articleNew in .NET 10 and C# 14: Optimizations in log aggregation jobs
blog.elmah.io
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
Topics: .NET 10 Performance
Read articleImplementing NuGet Central Package Management (CPM) in a .NET Solution using Visual Studio 2026
sachidevop.medium.com
Managing NuGet package versions across multiple projects can quickly become painful as a solution grows. Duplicate versions, inconsistent…
Topics: .NET Framework Visual Studio
Read articleA shortcut gives me a weird path for a program shortcut that doesn't point to the executable, so what is it?
devblogs.microsoft.com
Say you have a shortcut file and you want to see what its target is. The natural thing to do is to call IShellLink::GetPath, which returns S_FALSE if the shortcut does not target a path, or returns S_...
Topics: .NET Framework Visual Studio
Read articleCreating Objects Without a Model in C#
c-sharpcorner.com
Creating Objects Without a Model in C#
Topics: C# Solid Principles
Read articleEF Core vs Dapper: Choosing the Right Tool in Real-World .NET Applications
achuchiwilliam.medium.com
Choosing a data access strategy in .NET is rarely about picking the most popular library. It’s about understanding trade-offs, performance…
Read article1 Simple Trick to Make Your C# Enums Smarter (And Why You’ll Never Go Back)
medium.com
Let’s be honest — C# enums are kind of like that one friend who shows up to the party but never says anything. They’re nice to have around…
Topics: C# Design Patterns
Read articleC# Tuple: Organizing Multiple Business Data Points for Clear Insights
medium.com
Introduction
Topics: C# Domain-Driven Design
Read articleAuthentication in .NET — Part 12: Session & Cookie Security Hardening (Final Part)
dilankam.medium.com
In the previous parts of this series, we explored authentication flows, identity providers, JWTs, multi-tenancy, MFA, and API security…
Topics: Authentication Security
Read articleHow to Build Your First Web API (.NET Examples)
medium.com
If you’re new to backend development, one of the best things you can build to understand how everything connects is a simple Web API…
Read articleHow to Build iOS Widgets with .NET MAUI
devblogs.microsoft.com
Build professional iOS widgets with .NET MAUI, from static displays to interactive widgets. The post How to Build iOS Widgets with .NET MAUI appeared first on .NET Blog.
Topics: .NET MAUI
Read articleBackground Job Scheduling in .NET Applications Using Hangfire
medium.com
In modern software projects, handling long-running operations correctly is of great importance for the application to run in a stable and…
Topics: Docker Service Bus
Read article