.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 13 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 13 of 59
Newest first
-
Building Real-World Web Apps with ASP.NET Core Razor Pages
visualstudiomagazine.com Issue #400
Microsoft MVP Philip Japikse discusses how ASP.NET Core Razor Pages in .NET 10 provides a streamlined, page-centric development model for building maintainable web applications, leveraging modern feat...
-
How to Connect Angular Frontend With ASP.NET Core Web API?
c-sharpcorner.com Issue #400
Learn how to connect an Angular frontend to an ASP.NET Core Web API for scalable web apps. Includes CORS, HttpClient, environment configs, & security tips.
-
How LINQ Execution Actually Works: Power of Being Lazy
medium.com Issue #398
Have you ever written a beautifully complex LINQ query, stepped through it with your debugger, and noticed that your app didn’t actually…
-
Stop Cascading Failures: A Practical Guide to the Circuit Breaker Pattern in .NET
medium.com Issue #398
How to prevent cascading failures in distributed systems using Polly.
-
A smarter way to learn .NET without reading the docs
roundthecode.com Issue #398
Discover how .NET concepts can be learned without reading documentation, using AI tools to turn docs and videos into podcasts, summaries and mind maps. The page A smarter way to learn .NET without rea...
-
Middleware Deep Drive in .NET
medium.com Issue #398
Middleware in .NET acts as a request pipeline component that handles logging, authentication, routing, and error handling. Each middleware…
-
Observability in .NET with OpenTelemetry
c-sharpcorner.com Issue #398
Explore .NET observability with OpenTelemetry! Learn how to monitor distributed applications using logs, metrics, and traces. Plus, a basic setup example included!
-
LINQ in C#: Understanding the Select() Operator
medium.com Issue #398
When developers first encounter LINQ, they often see Select() as “just a projection method.” But in real systems, Select() is the operator…
-
Creating standard and "observable" instruments: System.Diagnostics.Metrics APIs - Part 3
andrewlock.net Issue #398
In this post I discuss the various Instrument
-
How Do I Start Coding in C# and .NET? The Practical Guide for Beginners and Beyond
medium.com Issue #396
Ever wondered, “How do I start coding in C# and .NET?” You’re not alone. Every day, thousands of developers — from absolute beginners to…
-
How Azure Works with .NET
medium.com Issue #396
Microsoft Azure works seamlessly with .NET by providing cloud services to build, deploy, and scale applications. Developers can host .NET…
-
Minimal C#/DotNet internal admin tools with Razor and Bootstrap
medium.com Issue #395
Part 1: Build tools for your team rather than run one-off queries Continue reading on CodeX »
-
Implementing strongly-typed IDs in .NET for safer domain models
blog.elmah.io Issue #395
As developers, we know that user requests can be unpredictable. When they request data, it is either successfully returned or not found. However, a "not found" result usually happens in two ...
-
Repository Pattern in .NET Explained with a Clear and Practical Example
c-sharpcorner.com Issue #395
Unlock efficient data access in .NET! This guide provides a clear, practical example of the Repository Pattern, boosting maintainability and testability.
-
-
How to Start a New .NET Project in 2026
antondevtips.com Issue #395
Learn how to set up a new .NET project in 2026 with best practices including Directory.Build.props, static code analysis, .editorconfig, Central Package Management, .NET Aspire, OpenTelemetry, and Git
-
How Is .NET Still Relevant for Modern Web Development Projects?
medium.com Issue #395
Modern web development evolves rapidly. New frameworks emerge, JavaScript libraries trend overnight, and cloud-native tools reshape how…
-
The Exhale: Cancellation, Backpressure, and Graceful Shutdown in ASP.NET Core
bipinjoshi.net Issue #395
Scalability is not only about handling more work—it is equally about knowing when to stop. Mature systems, like mature practices in meditation, recognize that continuation is not always the goal.
-
Why Moving from C# to .NET Backend Isn’t Magic (And How To Master It Step-by-Step)
medium.com Issue #395
When I began my .NET journey, I made a mistake many developers do: I jumped straight into building APIs, controllers, and routing — but…
-
Why Enterprises Prefer .NET Development Services: Real Industry Insights & Benefits
medium.com Issue #394
In a digital-first world where performance, security, and scalability matter more than ever, enterprises are constantly evaluating the…
-
.NET Performance Superpower: Understanding ValueTask (and When Not to Use It)
medium.com Issue #394
.NET Performance Superpower: Understanding ValueTask (and When Not to Use It)
-
Dotnet Core Identity With .NET CLI
ravindradevrani.medium.com Issue #394
Aspnet core identity provides an UI to registration, login, manage users, password, external authentication (google, twitter, facebook…
-
A Comprehensive Technical Analysis of .NET Framework and Modern .NET
medium.com Issue #394
What Is A Message Queue? RabbitMQ + MassTransit Integration in .NET 8
-
C# ASP.NET Core MVC: Building Your First Application — A Complete Guide from Models to Controllers
medium.com Issue #393
A Step-by-Step Tutorial for Creating Models, Views, and Controllers from Scratch
-
How to Implement Custom Response Caching in ASP.NET Core
c-sharpcorner.com Issue #393
Boost ASP.NET Core performance with response caching! Learn how to implement it using NCache for scalable, multi-server environments. Reduce latency and server load.