Home Archive JWT auth, metrics generators, EF Core bulk ops – .NET News Daily Issue #388 (Feb 10, 2026)

Editor's note

I curated a pretty mixed issue today, with security, performance, data access, and tooling all in the same lineup. The JWT role-based auth piece is practical for teams tightening API access, and the EF Core bulk operations article tackles a pain point many of us hit at scale. I also liked the Visual Studio AI roadmap update because it gives a clearer view of where the editor experience is headed.

JWT auth, metrics generators, EF Core bulk ops

In partnership with

Free, private email that puts your privacy first

A private inbox doesn’t have to come with a price tag—or a catch. Proton Mail’s free plan gives you the privacy and security you expect, without selling your data or showing you ads.

Built by scientists and privacy advocates, Proton Mail uses end-to-end encryption to keep your conversations secure. No scanning. No targeting. No creepy promotions.

With Proton, you’re not the product — you’re in control.

Start for free. Upgrade anytime. Stay private always.

Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

JWT Role-Based Authentication & Authorization in .NET

https://www.c-sharpcorner.com/article/jwt-role-based-authentication-authorization-in-net/

Secure your .NET APIs with JWT role-based authentication! This guide covers implementation, common mistakes, and best practices for robust authorization. Learn to lock down endpoints effectively.

Article preview

Exploring the (underwhelming) System.Diagnostics.Metrics source generators: System.Diagnostics.Metrics APIs - Part 2

https://andrewlock.net/creating-strongly-typed-metics-with-a-source-generator/

In this post I explore the source generators shipped in Microsoft.Extensions.Telemetry.Abstractions, explore the code, and discuss whether I would use them

Article preview

WPF Memory Leaks: The Static Event Trap that Eats Your RAM

https://medium.com/@CSharpAlchemist/wpf-memory-leaks-the-static-event-trap-that-eats-your-ram-f9b2b8551a6a?source=rss------csharp-5

A visual guide to identifying and fixing memory leaks in .NET applications using Visual Studio Diagnostic Tools.

Article preview

5 Advanced Async Concepts That Make Sense Once You Understand the Runtime

https://medium.com/codetodeploy/5-advanced-async-concepts-that-make-sense-once-you-understand-the-runtime-a5fa30af8688?source=rss------csharp-5

Why TaskCompletionSource, custom awaiters, and continuations behave the way they do Continue reading on CodeToDeploy »

Article preview

Command Line Interface Consumer for Kafka in C#

https://nodogmablog.bryanhogan.net/2026/02/command-line-interface-consumer-for-kafka-in-c/

When I started working with Kafka, I installed it locally on Docker and used a combination of the Confluent Command Line Interface (CLI) and C# programs I wrote. One of the CLI tools from Confluent l...

Article preview

How .NET and Azure create a foundation for enterprise AI

https://medium.com/@bART.Solutions/how-net-and-azure-create-a-foundation-for-enterprise-ai-0af317ebbadd?source=rss------dotnet-5

By the end of 2026, more than 80% of enterprises are expected to have used generative AI APIs/models or deployed GenAI-enabled apps in…

Article preview

Bulk Operations in EF Core 10: Beyond SaveChanges()

https://medium.com/@adrianbailador/bulk-operations-in-ef-core-10-beyond-savechanges-a916e0745824?source=rss------dotnet-5

When saving 10,000 records takes 30 seconds instead of 30 milliseconds

Article preview

Implementing Paging for Large Datasets in .NET Applications

https://www.trevoirwilliams.com/implementing-paging-for-large-datasets-in-net-applications/

Today, we're diving into a crucial aspect of building responsive and performant applications: **paging**.

Article preview

Stop Using AllowAnyOrigin()

https://medium.com/@shreyans_padmani/stop-using-allowanyorigin-4707dfd8c545?source=rss------dotnet-5

AllowAnyOrigin() might look like a quick fix for CORS errors, but it silently opens the door to serious security risks.

Article preview

Build AI‑Powered .NET Apps with Telerik

https://www.youtube.com/watch?v=PWLawDLe_RY

Article preview

What Writing C# for 5+ Years Taught Me About Simplicity

https://medium.com/@saifullahhakro/what-writing-c-for-5-years-taught-me-about-simplicity-8f071633ba0d?source=rss------dotnet-5

After writing C# professionally for more than five years, I’ve learned that simplicity is not something you start with — it’s something…

Article preview

The .NET Architecture Trap: Clean, Modular, and Painfully Slow

https://medium.com/@kerimkkara/the-net-architecture-trap-clean-modular-and-painfully-slow-3dcce0862cfd?source=rss------dotnet-5

Modern .NET architecture has a look. If you’ve been in enough code reviews or conference talks, you know it instantly. The solution has…

Article preview

Integrating Custom Validators for Incoming Request in .NET

https://medium.com/@vlad.ganuscheak/integrating-custom-validators-for-incoming-request-in-net-d6b9169add15?source=rss------dotnet-5

Article preview

How To Track Entity Changes With EF Core | Audit Logging

https://medium.com/@michaelmaurice410/how-to-track-entity-changes-with-ef-core-audit-logging-17f00d4acd7b?source=rss------dotnet-5

A Complete Guide to Production-Ready Audit Trails

Article preview

Serialization & Deserialization in C#

https://medium.com/@shreyans_padmani/serialization-deserialization-in-c-f9fd35596118?source=rss------csharp-5

Serialization in C# converts objects into a format like JSON or XML for storage or transmission, while deserialization reverses this…

Article preview

Roadmap for AI in Visual Studio (February)

https://devblogs.microsoft.com/visualstudio/roadmap-for-ai-in-visual-studio-february/

After a busy January (catch up here), we're shifting focus to reliability and refinement. This month is about

Article preview

Jasen's take on today's picks

JWT Role-Based Authentication & Authorization in .NET

A solid practical guide to roles and JWTs; useful if you’re tightening API access without overcomplicating the setup.

Exploring the (underwhelming) System.Diagnostics.Metrics source generators: System.Diagnostics.Metrics APIs - Part 2

I appreciated the source-generator deep dive because it questions whether the abstraction actually earns its keep.

WPF Memory Leaks: The Static Event Trap that Eats Your RAM

The WPF memory-leak post is a good reminder that static events can quietly wreck desktop app stability.

5 Advanced Async Concepts That Make Sense Once You Understand the Runtime

Async internals always repay the time spent learning them, especially when TaskCompletionSource and custom awaiters show up.

Command Line Interface Consumer for Kafka in C#

A handy Kafka CLI walkthrough for folks who still prefer command-line inspection over jumping straight into code.

How .NET and Azure create a foundation for enterprise AI

This one’s more strategic than tactical, showing how Azure and .NET fit into enterprise AI delivery.

Bulk Operations in EF Core 10: Beyond SaveChanges()

Bulk operations are one of those EF Core topics that can save serious time once data volumes start hurting.

Implementing Paging for Large Datasets in .NET Applications

Paging still matters everywhere; this is a straightforward reminder to design for large result sets early.

Stop Using AllowAnyOrigin()

AllowAnyOrigin() is the kind of shortcut that looks harmless until you need to explain the security review.

Build AI‑Powered .NET Apps with Telerik

The Telerik AI demo is a lighter entry, but it’s useful if you’re exploring how vendors are packaging AI workflows.

The .NET Architecture Trap: Clean, Modular, and Painfully Slow

The architecture critique will resonate with teams that have gone too far optimizing structure at the expense of speed.

Integrating Custom Validators for Incoming Request in .NET

Custom validators are a nice fit when you want request rules closer to the boundary instead of buried downstream.

Serialization & Deserialization in C#

Serialization basics are evergreen, and this is a simple refresher for newer C# developers.

Roadmap for AI in Visual Studio (February)

The Visual Studio AI roadmap is worth tracking because reliability and refinement usually matter more than flashy promises.

Related issues

📬 Get daily .NET content delivered to your inbox