frameworks
.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1444 articles Updated Page 30 of 58
Browse additional .NET Core articles from the DotNetNews archive.
.NET Core articles
Page 30 of 58
Newest first
-
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…
-
Global Exception Handling in ASP.NET Core
medium.com Issue #282
Instead of writing try/catch in every controller, we want one central place to: Continue reading on easydotnet »
-
Why Domain Migration Hits .NET Harder Than Java
aws.plainenglish.io Issue #281
Domain migration impacts in .NET and Java workloads Continue reading on AWS in Plain English »
-
How to Containerize a .NET Application with Docker
malshikay.medium.com Issue #281
Beginner’s Guide: How to Containerize .NET Applications with Docker Step by Step
-
Strategy Pattern vs Factory Pattern in .NET — Understanding the Difference with an Investment Plan
dotnetfullstackdev.medium.com Issue #281
When working in enterprise systems, especially in finance, you often encounter situations where different algorithms or creation logics…
-
Understanding Threading/ Multithreading, and Async/Await in C#
itsshubhamk.medium.com Issue #280
Working with C# applications frequently involves time-consuming tasks like reading files, contacting APIs, and running database queries.
-
Understanding Garbage Collection (GC) in .NET: A Pro’s Guide
medium.com Issue #280
Managing memory is one of the trickiest challenges of modern application development. .NET streamlines this process with its built-in…
-
Cancel requests correctly in C#
medium.com Issue #280
A short video I saw recently made me laugh — but also wince a little. It reminded me of how often we, as .NET developers, forget to cancel…
-
Stop Wasting Time: These .NET Packages Do the Hard Work for You
blog.stackademic.com Issue #280
Another carefully curated batch of hidden C# libraries That Do the Work, So You Can Take the Credit Continue reading on Stackademic »
-
Microservices Infrastructure: Building a Cloud-Native Foundation with .NET
medium.com Issue #280
Introduction