.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 30 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 30 of 59
Newest first
-
Difference Between .NET Core, .NET 5, .NET 6, .NET 7, and .NET 8
c-sharpcorner.com Issue #286
Understand the evolution of .NET! This guide breaks down the key differences between .NET Core, .NET 5, .NET 6, .NET 7, and .NET 8. Learn about their features, support lifecycles (LTS vs. current), pe...
-
💳 Case Study: How a Leading Bank Leveraged .NET Core and Azure to Solve a Critical Business Problem
c-sharpcorner.com Issue #286
This case study details how a major bank overcame scalability and compliance challenges by migrating from a monolithic .NET Framework application to a .NET Core microservices architecture on Azure. Th...
-
From JSON files to Strongly Typed objects in ASP.NET Core
medium.com Issue #286
In this article, we’ll explore JSON file configuration in ASP.NET Core, demonstrating how to add custom JSON files, access their values…
-
Why default in C# is Smarter Than You Think
medium.com Issue #286
When I was about a year into coding, I saw default in C# for the first time and thought, “Oh, it just sets things to zero or null. Nothing…
-
C# Lambdas Part 3, Setting Parameters Up Front, and Mismatching Func and Action Definitions
nodogmablog.bryanhogan.net Issue #286
Over the years, I’ve written a few posts about Actions, Funcs, and how they work with lambdas. Simple Action and Action
-
Performance Improvements in Our .NET Application
medium.com Issue #285
Today, we gonna look at the tips that can make your .NET application faster ⏩
-
Use Record Types for DTOs in C#
medium.com Issue #285
In modern C# development, Data Transfer Objects (DTOs) are everywhere — transporting data between APIs, services, and databases.
-
AutoMapper vs Mapster: A Comprehensive Technical Analysis for .NET Developers
medium.com Issue #285
Object-to-object mapping is a fundamental requirement in modern .NET applications, particularly when dealing with different layers of…
-
String Interpolation vs Concatenation in C#: The Cleaner Way to Write Strings
medium.com Issue #285
When I was about a year into coding, I still glued strings together with + signs like Lego blocks. It worked fine — until my code started…
-
Multi-Tenant SaaS Architecture | Tenant Isolation & Scalability
adilyousaf88.medium.com Issue #285
The Complexity of Building Multi-Tenant SaaS Applications (And How to Simplify It)
-
Part 5 — GC Myths Busted: What Developers Get Wrong About .NET Garbage Collection
medium.com Issue #284
Garbage Collection (GC) in .NET is one of the most misunderstood features. Despite being automatic, it’s not magic — and believing the…
-
All You Need to Know About .NET’s Cancellation Token
medium.com Issue #284
A comprehensive guide to understanding and implementing cancellation tokens in modern programming
-
5 .NET Features You’ll Wish You Knew Sooner
blog.stackademic.com Issue #284
Cleaner patterns, safer objects, and less boilerplate all hiding in plain sight. Continue reading on Stackademic »
-
Why Are You Still Re-Inventing These 5 .NET Features?
blog.stackademic.com Issue #284
The framework already solved these problems; you just need to start using them. Continue reading on Stackademic »
-
C# Interface vs Abstract: 3 Real-World Lessons That Changed Everything
medium.com Issue #284
Three real .NET production lessons on interface vs abstract — and the framework we use to avoid months of refactoring.
-
If You’re Not Using These 5 .NET Features, You’re Working Too Hard
blog.stackademic.com Issue #284
Simple APIs that quietly solve some of the nastiest problems in real-world apps. Continue reading on Stackademic »
-
How Async/Await Really Works
mariemoalla.medium.com Issue #284
If you’re new to C#, you’ve probably seen async and await in modern code and asked along the way:
-
The Exception That Cost Me $10K in .NET
levelup.gitconnected.com Issue #284
Why This Blog Matters Continue reading on Level Up Coding »
-
Working with solution root files in Visual Studio 2022
medium.com Issue #284
In Visual Studio 2022, it’s inconvenient to work with files and folders located in the root directory where the .sln file lives.
-
Here are 5 underappreciated LINQ methods you should know:
medium.com Issue #283
- SequenceEqual - Aggregate - GroupJoin - ToLookup - Intersect
-
String Manipulation in C#
medium.com Issue #283
String manipulation is one of the most essential skills in C# development. From formatting names and messages to parsing user input and…
-
Ditch the UI: A Modern “Do This, Not That” Guide to NuGet Management with the .NET CLI
medium.com Issue #283
Right-click, Manage NuGet Packages, search, click install, wait…
-
Boost Your C# Skills: Key .NET Core MCQs Every Developer Should Know
medium.com Issue #283
Introduction
-
Task Parallel Library (TPL) in .NET — Beyond Async/Await
medium.com Issue #282
Harnessing Parallelism for Performance
-
Specification Pattern in EF Core: Flexible Data Access Without Repositories
medium.com Issue #282
As your .NET projects grow, handling data gets more and more complicated. Many teams start with the Repository Pattern, wrapping their EF…