.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 5 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 5 of 59
Newest first
-
Distributed Caching in ASP.NET Core Using Redis: Best Practices
c-sharpcorner.com Issue #474
Learn how to implement distributed caching in ASP.NET Core using Redis. Explore caching strategies, Redis integration, and best practices for scalable applications.
-
How to upload files in an ASP.NET Core Web API
blog.elmah.io Issue #474
Files are an integrated part of an application. From a social app to an ERP, some form of media exists in the ecosystem. .NET Core APIs provide built-in support for uploading and fetching documents. I...
-
.NET Core Reverse API and Reverse Engineering – Complete Guide
c-sharpcorner.com Issue #474
Explore .NET Core reverse APIs and reverse engineering! Learn integration with HttpClient, EF Core scaffolding, authentication, and best practices for efficient development.
-
ASP.NET Community Standup: Simplifying Entra ID authentication with AI
youtube.com Issue #474
Join Jean‑Marc Prieur and Kyle Marsh to see how AI can streamline Entra ID authentication in ASP.NET Core and Aspire apps. We’ll explore using AI to set up app authentication, enable calls to protecte...
-
How to Build Retrieval-Augmented Generation (RAG) Applications in .NET
c-sharpcorner.com Issue #474
Learn how to build Retrieval-Augmented Generation (RAG) applications in .NET using ASP.NET Core, embeddings, vector databases, and large language models.
-
.NET R&D Digest (May, 2026)
olegkarasik.wordpress.com Issue #473
This issue includes bits of AI (too much AI), C#, software development, architecture, Windows, security, NTFS and of course .NET and .NET Internals.
-
C# Word Library: Comparing 7 Options for .NET Developers in 2026
c-sharpcorner.com Issue #472
Explore the top 7 C# Word libraries for .NET in 2026. Compare features, licensing, and performance to choose the best option for document generation, parsing, and conversion.
-
C#: Should This Service Be Singleton, Scoped, or Transient?
pietschsoft.com Issue #472
One of the most common ASP.NET Core dependency injection questions sounds simple:
-
Reverse Engineering an API in .NET Core – Complete Practical Example
c-sharpcorner.com Issue #472
Master API reverse engineering in .NET Core! Learn to analyze undocumented APIs, recreate functionality, and integrate with systems using practical examples and tools.
-
Ten Things Scott Sauber Does On Every .NET App
spreaker.com Issue #471
What settings, configurations, and workflows do you use for every .NET app? Carl and Richard talk to Scott Sauber about his list - from organizing folders by feature, to logging, security, and testing...
-
Simplifying .NET Installs with dotnetup
youtube.com Issue #471
A new way to manage .NET SDK and Runtime installations that works for every user, on every platform! ⌚ Chapters: 00:00 Welcome and Intro 00:26 What we're talking about today 01:14 Installing .NET 07:2...
-
.NET in 2026 — Is It Still Worth Learning?
rimazahamed.medium.com Issue #470
The honest answer for developers who want to build real things
-
Database Connection Pooling vs DbContext Pooling in .NET
malshikay.medium.com Issue #469
When working with Entity Framework Core, many developers confuse database connection pooling with DbContext pooling. Although both improve…
-
Mission Possible : Implementing Design Patterns in .NET
medium.com Issue #469
This blog is designed to go through nine major design patterns revolving around three categories of these patterns — creational (dealing…
-
Improving C# Memory Safety: Why Modern .NET Is Quietly Becoming More Secure
towardsdev.com Issue #469
A few years ago, whenever developers talked about “memory safety,” the conversation usually centered around languages like: Continue reading on Towards Dev »
-
When Parallel Became a Problem: A Backend Engineering Postmortem on Fan-Out Concurrency
bhautikk.medium.com Issue #469
How an innocent Task.WhenAll() brought down our order aggregation service under load — and what we did about it.
-
C# Barcode Library: Comparing 11 Options for .NET Developers in 2026
c-sharpcorner.com Issue #469
Explore the top 11 C# barcode libraries for .NET developers in 2026. Compare open-source & commercial SDKs for generating, reading, and scanning barcodes in diverse applications. Find the best fit...
-
Building a Full-Stack Task Manager App with .NET Core Web API + Angular 20
medium.com Issue #468
Build a complete Task Manager app with JWT auth, Angular Signals, and EF Core
-
Running ASP.NET Core Applications as a Subfolder Application
weblog.west-wind.com Issue #468
ASP.NET Core applications by default want to run in a root folder - and to be fair that's the 99% use case. But there are those occasional situations where you want to run a Web site in a sub folder r...
-
ConsoleLogStreaming
sipkeschoorstra.medium.com Issue #467
Streaming console output from distributed applications in real time
-
From Zero to Deployment: How .NET Apps Really Work in the Real World
medium.com Issue #467
Modern software development is built on layers of abstraction that work together to transform human-written logic into real-world…
-
Understanding Middleware in .NET
yogeshhadiya33.medium.com Issue #466
Whenever a request hits an ASP.NET Core application, it doesn’t directly go to your controller or endpoint. Before that happens, the…
-
️ Modernizing .NET — Part 26: Implementing Rate Limiting Middleware in ASP.NET Core
medium.com Issue #466
Boost performance and stability with ASP.NET Core Rate Limiting Middleware. Control concurrency and prevent service unresponsiveness.
-
Reverse Engineering an API in .NET Core – Complete Practical Example
c-sharpcorner.com Issue #465
Master API reverse engineering in .NET Core! Learn to analyze undocumented APIs, recreate functionality, and integrate with systems using practical examples and tools.
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #464
Production-grade rate limiting in ASP.NET Core .NET 10. All 4 algorithms, partitioning, Redis backplane, OnRejected with Retry-After, multi-tenant tiers, and a real decision matrix.