.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 35 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 35 of 57
Newest first
-
What are the Best Practices for EF Core Performance Optimization?
c-sharpcorner.com Issue #261
Learn how to optimize Entity Framework Core (EF Core) for high-performance data access. This article covers best practices, from query tuning to memory management, with practical C# code examples. Ide...
-
Why You Should Learn About EF Core AsSplitQuery
medium.com Issue #261
For today we gonna learn to know about .AsSplitQuery() 😊
-
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
-
5 .NET Tips That Quietly Separate Experts From Everyone Else
blog.stackademic.com Issue #260
Master these, and your code will start feeling as fast and clean as it looks. Continue reading on Stackademic »
-
Real-World Software Architecture in C#: Chapter 11 — Myths and Misinterpretations in .NET
blog.stackademic.com Issue #260
This article series was born from frustration — and experience. Continue reading on Stackademic »
-
Span Isn’t Just a Buzzword — It’s How Microsoft Cuts Allocations in .NET 8+
blog.devgenius.io Issue #260
💡 Sick of shallow Span<T> blogs slicing strings and calling it performance? This is the real deal — practical, production-grade usage… Continue reading on Dev Genius »
-
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.
-
Belitsoft on ZLinq: Modern LINQ Performance for Legacy .NET Apps
belitsoft.com Issue #260
Eliminate heap allocations while keeping LINQ’s syntax — ideal for high-frequency trading, real-time analytics, and legacy .NET upgrades.
-
Memory-Efficient String Handling in .NET: StringBuilder vs Concatenation
malshikay.medium.com Issue #260
Efficient string handling in C#
-
Mastering Cancellation Tokens in .NET
blog.stackademic.com Issue #260
Why your async code needs cancellation and how to get it right from the start. Continue reading on Stackademic »
-
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 »
-
15 Critical LINQ Mistakes Every .NET Developer Must Avoid
medium.com Issue #259
Master these common LINQ pitfalls to write more efficient, maintainable, and bug-free code.
-
Mastering String Manipulation in .NET — Everything You Need to Know
medium.com Issue #259
From performance to localization, from regex to raw string literals — a complete guide for .NET developers
-
Building High-Performance .NET Apps With C# Channels
antondevtips.com Issue #259
Building reliable, scalable, and high-performance .NET applications often comes down to how you handle concurrency and data processing… Continue reading on CodeX »
-
Stop Looping: Use Dictionary for Fast Entity Access in .NET
mariemoalla.medium.com Issue #259
In many .NET applications, you manage collections of entities, like users, orders, or products, and frequently need to look up items by…
-
Monitor Performance by Using the Query Store
c-sharpcorner.com Issue #259
Query Store in SQL Server helps monitor query performance over time by storing execution plans, runtime stats, and wait times. It enables troubleshooting, plan forcing, and tracking regressions effect...
-
How To Implement Offset and Cursor-Based Pagination in EF Core
medium.com Issue #258
Efficient pagination is crucial for enhancing application performance and user experience, particularly when working with large datasets… Continue reading on CodeX »
-
Supercharged Performance with SQL Partitioning & C#: One Strategy, Multiple Tables
dotnetfullstackdev.medium.com Issue #258
Scenario:
-
⚡️ 30+ Proven .NET Core Performance Optimization Tips (With Real-World Examples)
medium.com Issue #258
.NET Core has come a long way in terms of performance.
-
URL Shortener in .NET 9 | Clean Architecture & Performance Optimized
medium.com Issue #258
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
You’re Ignoring the Most Powerful .NET Library for High-Throughput Message Processing
blog.devgenius.io Issue #257
💡 ActionBlock, TransformBlock, and the Secret Weapon Behind Microsoft’s Streaming Pipelines Continue reading on Dev Genius »