.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 23 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 23 of 59
Newest first
-
Life Tracker: A .NET App — 6 Basic Auth
jackymlui.medium.com Issue #321
Code fohttps://github.com/Recelis/questionnaire.net.git
-
DotNet: 9 Versions of .NET Performance Enhancements
medium.com Issue #320
Are you stuck on a prior version of .NET? 3.5 or 4.8 or maybe .NET CORE. It’s time to think about migrating to .NET 10. Read this digest…
-
Use swiyu, the Swiss E-ID to authenticate users with Duende and .NET Aspire
damienbod.com Issue #320
This post shows how to authenticate users using Duende IdentityServer and ASP.NET Core Identity which verifies identities (verifiable digital credentials) using the Swiss Digital identity and trust in...
-
⚙️ Mastering Exception Handling in .NET Core — Complete Guide with Examples
c-sharpcorner.com Issue #319
Master .NET Core exception handling! Learn try-catch, global handlers, middleware, custom exceptions, and logging for robust & user-friendly apps.
-
Is C# Dying in 2025?
blog.probirsarkar.com Issue #318
Every few years, the same question resurfaces:
-
Why Use the Unit of Work Pattern in .NET
malshikay.medium.com Issue #318
Build Consistent, Maintainable, and Testable ASP.NET Core Applications with the Unit of Work Pattern
-
11 No-Drama Ways to Organize Minimal API Endpoints in Clean Architecture (with Copy-Paste Code)
medium.com Issue #318
If you want the full source code, join our community: Here
-
🚀 Batch Processing in C# using async and await — The Smart Way to Handle Workloads
c-sharpcorner.com Issue #318
Master batch processing in C# using async/await! Learn how to efficiently handle large workloads, improve performance, and scale your applications. Real-world examples included.
-
Designing a Robust Global Exception Handling Strategy in ASP.NET Core
c-sharpcorner.com Issue #317
Implement robust ASP.NET Core global exception handling for resilient APIs. Centralize error management, ensure consistent responses, and enhance observability. #dotnet
-
How To Add Fault Handling In ASP.NET Core With Polly | Clean Architecture, .NET 9.
medium.com Issue #317
Part 1 — Introduction, Architecture, and Project Setup
-
ASP.NET Core Future Trends 2025: MAUI, AI Integration, Blazor Hybrid & Cloud-Native Development (Part-35 of 40)
c-sharpcorner.com Issue #317
Explore the future of ASP.NET Core in 2025! This article dives into key trends like .NET MAUI for cross-platform development, AI integration for intelligent applications, Blazor Hybrid for web & n...
-
Enterprise-Grade CI/CD for ASP.NET Core (Part-33 of 40)
c-sharpcorner.com Issue #317
This article, part 33 of a 40-part series, details enterprise-grade CI/CD for ASP.NET Core applications. It covers project structure, Docker configuration, comprehensive testing (unit & integratio...
-
Testing HttpClient in .NET without Moq or NSubstitute
medium.com Issue #316
How to unit test HTTP clients in .NET without relying on mocking frameworks (Moq or NSubstitute) using DelegatingHandler.
-
Using WebProxy in C# to Access Internet in Restricted Networks
c-sharpcorner.com Issue #316
Learn how to implement a WebProxy in C# to bypass network restrictions and access the internet in corporate environments. This guide provides a reusable method for creating and configuring a proxy, ha...
-
Concurrency — The Art of Managing Many Things at Once
medium.com Issue #316
You’ve seen threads. You’ve seen async. But now it’s time to understand what both of them really belong to: concurrency.
-
Four things to remember about Sitecore Search
blog.jermdavis.dev Issue #316
Anyone who's been doing Sitecore DXP for a while will be fairly comfortable with Solr and how search works under the Content Search APIs. But if you're moving to the newer SaaS products then you're no...
-
⚡ Asynchronous Programming — Doing More Without Waiting
medium.com Issue #316
At some point, every developer meets the keyword async and thinks:
-
.NET Secrets Management with Azure App Configuration & Key Vault
blog.yaseerarafat.com Issue #315
Ensure Secure, Scalable, and Resilient Secret Management Across All Environments and Regions in .NET
-
Stop Guessing: Here’s What .NET GC Isn’t Telling You
medium.com Issue #315
Discover how memory really gets managed and why your app might be bleeding performance
-
You’re Still Boxing and Don’t Even Know It — Hidden Allocations in Modern C#
medium.com Issue #315
“GC pauses don’t come from nowhere — they come from your code.”
-
Managing Permissions with EF Core Migrations (Part 2): A No-Nonsense Guide That Actually Scales
medium.com Issue #315
If you want the full source code, join our community: Here
-
ASP.NET Core Dependency Injection From Scopes & Lifetimes
medium.com Issue #315
You know the basics. AddTransient, AddScoped, AddSingleton. It all seems so straightforward.
-
Your .NET App Can Think — Add AI Reasoning Using Microsoft’s Own Stack
medium.com Issue #315
A step-by-step guide to building reasoning APIs using Semantic Kernel, Azure OpenAI, and function calling. By Mohammad Shoeb — Microsoft…
-
.NET AI Community Standup - Microsoft Agent Framework: Workflows & Migration Overview
youtube.com Issue #315
Why You Should Avoid async void in C# (and What to Use Instead)
-
The Right Way to Make HTTP Requests in .NET: HttpClient vs. IHttpClientFactory
medium.com Issue #314
The HttpClient is the foundational class for making HTTP requests in .NET applications. It's simple, intuitive, and highly effective—but…