frameworks
.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1444 articles Updated Page 25 of 58
Browse additional .NET Core articles from the DotNetNews archive.
.NET Core articles
Page 25 of 58
Newest first
-
RESTful API Mastery: ASP.NET Core Best Practices, Versioning & Serialization Complete Guide - Part-10 of 40
c-sharpcorner.com Issue #307
Master RESTful API development in ASP.NET Core with this comprehensive guide. Learn best practices for versioning, serialization, authentication, and building scalable services. Explore real-world exa...
-
ASP.NET Core 2025 Beginner Guide Part 1 - Setup, First App & Real Examples
c-sharpcorner.com Issue #307
Embark on your ASP.NET Core 2025 journey with this comprehensive beginner's guide! Learn to set up your environment, understand the architecture, and build your first web application and e-commerce AP...
-
Minimal APIs Revolution: ASP.NET Core Rapid API Development Guide & Examples : Part 9 of 40
c-sharpcorner.com Issue #307
Unlock rapid API development with ASP.NET Core Minimal APIs! This comprehensive guide, part of a 40-part series, covers everything from basic CRUD operations to advanced techniques like authentication...
-
C# 12 Features Mastery Part 4 - Primary Constructors, Records, Pattern Matching for ASP.NET Core
c-sharpcorner.com Issue #307
Master C# 12's essential features for ASP.NET Core development! Part 4 dives into primary constructors (reducing boilerplate), records (immutable data), advanced pattern matching (smarter code flow), ...
-
Clean Architecture in .NET Core
c-sharpcorner.com Issue #306
This article provides a practical guide with code examples, demonstrating how to separate concerns using the Dependency Rule. Learn to structure your .NET Core projects effectively by isolating domain...
-
Implementing Soft Delete in Entity Framework Core with Generic Repository
medium.com Issue #306
Why Soft Delete?
-
Your .NET Setup is a Mess: A 'Do This, Not That' Guide to a Squeaky-Clean Dev Environment
medium.com Issue #306
Let’s be honest. If you’ve been a .NET developer for more than a few years, your machine has likely become a museum of SDKs. You have old…
-
-
How to Find an Available Network Port for a server in .NET
meziantou.net Issue #306
When working with network programming in .NET, you might need to find an available port on your system. This is particularly useful when creating server applications, running tests, or developing tool...
-
Understanding the Difference Between `readonly` and `const` in C#
medium.com Issue #306
Discover why these two keywords behave differently and how misunderstanding them can cause subtle bugs.
-
C# Without null: Implementing Option and Result Types in .NET
medium.com Issue #306
If your codebase looks like a haunted house of if (x == null) return;, it’s not “defensive.” It’s indecisive. Instead of sprinkling null…
-
Modernizing Legacy C# Code: Refactoring Strategies Every Developer Should Know
c-sharpcorner.com Issue #305
Discover practical refactoring strategies using LINQ, pattern matching, and async/await. Learn how to simplify loops, improve string handling, implement proper logging, and leverage IHttpClientFactory...
-
Interfaces in .NET: Building Robust and Maintainable Applications
medium.com Issue #305
Refined Topics
-
7 Types of Constructors in C#
medium.com Issue #305
Constructors are special methods that execute automatically when an instance of a class is created.
-
.NET, .NET Core, and .NET Framework: Key Differences and Their Past and Present
medium.com Issue #305
When you first step into web programming and application development with .NET, you’ll encounter a huge amount of confusion. Especially if…
-
The Evolution of .NET: From Framework to Future
c-sharpcorner.com Issue #305
Explore the evolution of .NET from its early days revolutionizing software development in Bangladesh to its current role as a powerful, cross-platform ecosystem. Discover how .NET empowers developers ...
-
20+ Code Hacks to Instantly Boost Your Productivity in .NET Core
medium.com Issue #305
Just follow these quick tricks those are helpful in day-by-day coding.
-
⚡ Understanding Span and Memory in C#: The Hidden Power Behind Modern High-Performance .NET
mohit8830.medium.com Issue #304
List<T> = Flexible but slow (heap-based, many allocations) Span<T> = Ultra-fast, stack-based, local memory access Memory<T> = Async-safe…
-
Implement UPSERT – Insert and Update using Fabric Data Pipeline
c-sharpcorner.com Issue #304
Discover how to efficiently implement UPSERT (Update or Insert) operations within Fabric Data Pipelines. This guide provides a practical approach to seamlessly manage data updates and insertions, ensu...
-
How to Create a Custom .NET Package and Import It Locally
medium.com Issue #304
Creating a custom package is a great way to reuse common code across multiple projects.
-
Unsafe Code in C#: When and Why It’s Worth It
medium.com Issue #304
Discover how unsafe code in .NET lets you trade safety for speed, master pointers, and optimize performance-critical applications.
-
How .NET Code Works Behind the Scenes: Explained for Beginners
medium.com Issue #304
Ever wondered what really happens when you hit “Run” in a .NET app?
-
Microservices in .NET Core: A Beginner-Friendly Guide
c-sharpcorner.com Issue #304
Unlock the power of microservices in .NET Core with this beginner-friendly guide! Learn how to build scalable, maintainable, and resilient applications by breaking them down into independent services....
-
.NET AI Community Standup - Getting Started with the Microsoft Agent Framework
youtube.com Issue #304
Thread Safety in .NET: Avoiding Race Conditions and Deadlocks
-
Your .NET App Doesn’t Need a Database on the Hot Path — Meet the Local Caching Revolution
medium.com Issue #304
How hybrid in-memory + distributed caching patterns are quietly replacing database round-trips in real-world .NET systems. Continue reading on ILLUMINATION’S MIRROR »