.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 36 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 36 of 59
Newest first
-
Simplify Your Background Jobs in .NET with Hangfire
medium.com Issue #262
A complete developer’s guide to mastering background jobs in .NET using Hangfire
-
-
Multithreading in C# .NET Core: A Real-World Guide (With Code, Mistakes, and Clarity)
medium.com Issue #261
“Why is my app freezing?” “Why is this taking so long to load?” “My API works fine — until multiple users hit it at once…” Continue reading on CodeToDeploy »
-
Data Formats in .NET: What They Are and How They Look
medium.com Issue #261
When I started my first job as a junior developer, one of the first things I saw in the backend codebase was something like this:
-
Why .NET Full Stack Developers Are the Backbone of Enterprise Digital Transformation in 2025
medium.com Issue #261
As businesses accelerate toward digital-first strategies in 2025, the demand for skilled professionals who can architect, build, and scale…
-
Top 10 .NET Development Companies of 2025: How to Choose the Right Partner
belitsoft.com Issue #261
When you’re looking to hire a trusted .NET development partner, the “top 10” label usually indicates companies with deep expertise in…
-
Disabling thread safety check in Entity Framework
steven-giesel.com Issue #261
In this blog post we will have a look into how to disable the thread safety check in Entity Framework. What are the implications of doing so and how to do it.
-
Asynchronous Programming in C# — Comparing it with multi threading
ravindradevrani.medium.com Issue #261
Asynchronous task is a non-blocking task. Main thread goes back to the thread pool (and free to do other tasks) when it reaches to await –…
-
5 Modern C# Features That Will Make Your Code Feel Like Magic
blog.stackademic.com Issue #261
The language evolved. Your code should, too. Continue reading on Stackademic »
-
How is .Net platform independent?
dharinibalasubramaniam.medium.com Issue #261
Understanding the Cross-Platform Nature of .NET with Real-World Analogies
-
Understanding MVC in .NET
medium.com Issue #261
I recently started working with ASP.NET and I kept hearing about “MVC” — the Model-View-Controller pattern. Everyone around me swore by it…
-
How Clean Architecture Differs From Layered
medium.com Issue #260
In a recent post I showed the way I structure my apps, only three layers — API, Core (business logic), and Infrastructure (handling…
-
How does C# differ from C or .NET?
c-sharpcorner.com Issue #260
A clear and concise guide explaining how C#, C, and .NET differ — covering their roles, syntax, usage, and ecosystem. Perfect for beginners and professionals looking to understand where each technolog...
-
Stop Looping: Use Dictionary<Guid, T> for Fast Entity Access in .NET
c-sharpcorner.com Issue #260
This post explores a common performance issue in .NET, using collections for ID-based lookups, and presents a cleaner, faster alternative using Dictionary.
-
InfluxDB and C#
nodogmablog.bryanhogan.net Issue #260
Download full source code. I recently started playing with InfluxDB, and as with many of these things, it took a little longer to get going than expected. So, to save the next person some time, here ...
-
How we enforce .NET coding standards at Workleap to improve productivity, quality and performance
anthonysimmon.com Issue #259
Distributing .editorconfig and MSBuild properties across hundreds of .NET projects is now as easy as adding a single NuGet package. Continue reading on Workleap »
-
Stop using .sln files — switch to .slnx in .NET now
medium.com Issue #259
The old .sln served us well, but the new XML-based .slnx fixes decades of pain — fewer merge fights, better tooling, and CLI-first…
-
How to implement Dependency Injection in .NET
c-sharpcorner.com Issue #259
This code registers application services using Dependency Injection in .NET. IReportService is added as scoped and IEmailSender as transient, promoting modular, testable, and maintainable architecture...
-
COALESCE vs. ISNULL: Better NULL Handling in .NET Apps
itnext.io Issue #259
Compare COALESCE and ISNULL to write cleaner, portable SQL for your .NET data layers. Continue reading on ITNEXT »
-
The new Dependabot NuGet updater: 65% faster with native .NET - .NET Blog
devblogs.microsoft.com Issue #259
Discover the new Dependabot NuGet updater that improves performance, accuracy, and developer experience by leveraging native .NET tooling.
-
Why .NET is the Best-Kept Secret for New Programmers
towardsdev.com Issue #259
Kickstart your coding journey with .NET’s simplicity and versatility. Continue reading on Towards Dev »
-
Why .NET Applications Fail: A Developer’s Complete Guide to Common Issues and Solutions
medium.com Issue #259
Understanding the root causes behind .NET application failures can save you hours of debugging and prevent costly production issues… Continue reading on .Net Programming »
-
Automating .NET User Secrets with PowerShell
kaylumah.nl Issue #259
Manage secret configuration for dotnet projects using PowerShell
-
✨ You’re Probably Handling Middleware Wrong in .NET — Here’s the Right Way
blog.yaseerarafat.com Issue #259
Middleware used to be magic — until it became a mess. Here’s how to reclaim control with a cleaner, composable, and more testable…
-
Understanding the MVC Application Life Cycle in ASP.NET Core (.NET 6/7/8)
c-sharpcorner.com Issue #258
With the evolution of .NET into .NET Core and now .NET 6, 7, and 8, the MVC framework has seen major architectural improvements. Understanding the ASP.NET Core MVC application life cycle is crucial fo...