ASP.NET Core security, AI tools, and .NET 8 performance
This issue covers ASP.NET Core configuration, security, auth, health checks, AI feature design, source generators, and .NET 8 memory pitfalls.
Jasen's top three picks
- 1 What is a Vector Database in Data Science?
c-sharpcorner.com
Vector databases are now table stakes for AI search and recommendations, and this primer is a useful grounding piece.
- 2 ASP.NET Core - How to Use appsettings.json and IConfiguration
c-sharpcorner.com
appsettings.json and IConfiguration remain everyday tools; this one is a solid refresher for keeping configuration tidy.
- 3 The Package Version Chaos is Over: How .NET
medium.com
Version mismatches are still painful in .NET, so a package-version cleanup story is worth reading if you’ve fought dependency drift.
Editor's note
I curated a very mixed lineup today: practical ASP.NET Core guidance, security hardening, and a few AI-heavy pieces. The Visual Studio 2026 Insiders post stands out for its IDE roadmap, while the unmanaged memory article is a good reminder that GC health does not guarantee container health. This issue also includes several fundamentals refreshers that still matter in real projects.
Today's articles
What is a Vector Database in Data Science?
c-sharpcorner.com
Unlock the power of AI with vector databases! This article explains what vector databases are, why they're crucial for modern data science, and how they enable semantic search, recommendation systems,...
Read articleASP.NET Core - How to Use appsettings.json and IConfiguration
c-sharpcorner.com
This article simplifies using appsettings.json and IConfiguration to manage application settings like database connections, API keys, and logging levels. Learn how to access settings, leverage strongl...
Read articleThe Package Version Chaos is Over: How .NET
medium.com
Ever spent hours debugging a mysterious runtime error, only to discover that ProjectA was using Newtonsoft.Json 13.0.3 while ProjectB was…
Read articleMy Favorite .NET Libraries and How They Boost Productivity
medium.com
As a .NET developer, I’m always on the lookout for tools that help me write cleaner, faster, and more maintainable code. Over the years…
Read article.NET vs. .NET Core in 2025: A Developer’s Guide to What Matters
medium.com
It’s September 2025, and if you’re a developer in the C# ecosystem, the old ‘.NET Core vs. .NET Framework’ debate feels like a relic from…
Read articleHealth Checks in ASP.NET Core: Building Reliable Endpoint Monitoring
medium.com
Introduction to Health Checks in ASP.NET Core — Why monitoring endpoints matters for modern APIs.
Read articlePreventing Path Traversal and Directory Browsing Attacks in ASP.NET Core
c-sharpcorner.com
Protect your ASP.NET Core applications from path traversal and directory browsing attacks! Learn practical mitigation strategies, including disabling directory browsing, sanitizing file paths with Pat...
Read articleUnmanaged Memory Growth in .NET 8: Why Containers Crash Even When GC Looks Healthy
medium.com
A deep dive into memory leaks and allocation pitfalls in .NET 8, with real-world case studies and practical fixes for developers.
Read articleScaling Your .NET Productivity with Source Generators
blog.stackademic.com
.NET source generators provide a compile-time hook into Roslyn Continue reading on JavaScript in Plain English »
Read articleAuthentication with OpenID Connect & OAuth2 in .NET
medium.com
Secure Your Web Apps and APIs with Modern Authentication Flows
Read article🚀 Generating .NET Core Projects with AI (Codeium/Windsurf)
c-sharpcorner.com
Discover how Windsurf (formerly Codeium), an AI coding assistant, revolutionizes .NET Core development. Learn to generate entire Web API projects with CRUD endpoints, Entity Framework Core integration...
Read articleWhat Is .NET Core and How Is It Different from .NET Framework?
c-sharpcorner.com
Explore the key differences between .NET Core and .NET Framework. Learn about platform support, performance, application types, deployment, and development models. Discover when to use .NET Core for m...
Read articleTop 5 Attributes in C# You’ll Actually Use (Deeper Dive)
medium.com
When I was one year into C#, attributes looked like colorful stickers people pasted above classes and methods. But they’re actually…
Read articleModel Binding and Model Validation in ASP.NET Core MVC?
c-sharpcorner.com
Unlock the power of ASP.NET Core MVC with Model Binding and Model Validation! Learn how to automatically map HTTP request data to your models and ensure data integrity. Discover how data annotations a...
Read articleBuilding a Modern Microservices Application with .NET Core, Angular 20, Docker, and Azure
c-sharpcorner.com
Build a modern microservices application using .NET Core 7, Angular 20, Docker, and Azure. This comprehensive guide covers backend development with .NET API and EF Core, frontend implementation with A...
Read articleVisual Studio 2026 Insiders is here!
devblogs.microsoft.com
Visual Studio 2026 Insiders is here - and it marks one of the most ambitious steps forward we’ve taken with the IDE. This release brings AI woven directly into the developer workflow, performance impr...
Read articleWhat Is An Entity? | Domain-Driven Design, Clean Architecture
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Read articleHow to Correctly Build AI Features in .NET
medium.com
Resilient .NET AI pipeline: unify chat, embeddings, tools, streaming, caching & telemetry with Microsoft.Extensions.AI
Read articleWhy Cross-Browser Testing is Important?
c-sharpcorner.com
Ensure a seamless user experience across all browsers with cross-browser testing. This crucial process identifies and resolves compatibility issues, guaranteeing consistent design, functionality, and ...
Read articleHow a Tiny Token in .NET Stopped a Million-Dollar Mistake
medium.com
Discover the overlooked role of __RequestVerificationToken, why it’s critical for web security, and the lessons I learned the hard way as…
Read article.NET AI Community Standup - Getting to Know LLM Tornado
youtube.com
C# 13 Speed Plays: Span, Pipelines, Zero-GC
Read article