This website uses cookies

Read our Privacy policy and Terms of use for more information.

Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

The quickest way to edit code??

https://www.youtube.com/shorts/J_Vahq2X_J8

Mastering Connection Pooling with Dapper in ASP.NET Core Web API

https://www.c-sharpcorner.com/article/mastering-connection-pooling-with-dapper-in-asp-net-core-web-api2/

Optimize Dapper connection pooling in ASP.NET Core Web API for peak performance. Avoid latency, pool exhaustion, and crashes with proper management techniques.

RedLock.NET Distributed Locking

https://medium.com/@eh0neer.jobs/redlock-net-distributed-locking-0b7c43c625f3?source=rss------dotnet-5

A brief overview

Unit of Work Pattern Explained Simply in .NET

https://malshikay.medium.com/unit-of-work-pattern-explained-simply-in-net-d837d044d2d7?source=rss------dotnet-5

When building applications that interact with a database, it is common to perform multiple operations as part of a single business process…

Stop NullReferenceExceptions in C# Before They Break Your App

https://medium.com/@salomonakoa44/stop-nullreferenceexceptions-in-c-before-they-break-your-app-3f5d0610d3ff?source=rss------dotnet-5

A NullReferenceException occurs when you try to access a member (method, property, index) of an object that is currently null.

async/await in C#: What Actually Happens

https://medium.com/@monicalaurenzana/async-await-in-c-what-actually-happens-cc0449044b01?source=rss------dotnet-5

I kept hearing that async/await makes code “run in the background” or “makes things faster,” but that never fully made sense to me.

Why Async/Await Changed the Way We Think About Concurrency

https://www.c-sharpcorner.com/article/why-asyncawait-changed-the-way-we-think-about-concurrency/

Explore how async/await revolutionized concurrency in C#. Learn how it simplified asynchronous programming, improved scalability, and shifted developer thinking in .NET.

Captive Dependency in .NET: The Complete Guide to Understanding, Detecting, and Fixing It

https://medium.com/@alazamitarek/captive-dependency-in-net-the-complete-guide-to-understanding-detecting-and-fixing-it-3aff293b9a85?source=rss------dotnet-5

Introduction

How to Use Azure Blob Storage to Upload and Download Files in .NET

https://www.c-sharpcorner.com/article/how-to-use-azure-blob-storage-to-upload-and-download-files-in-net/

Learn how to use Azure Blob Storage in .NET to efficiently upload and download files. Step-by-step guide with code examples, best practices, and real-world use cases.

.NET Conf Most Popular Sessions Tool

https://ardalis.com/dotnetconf-most-popular-sessions-tool/

DotNetConf (.NET Conf) is a long-running virtual conference hosted each November with the release of a new version of .NET. Its sessions are published to YouTube each year. What have been the top sess...

Detecting Broken Image URLs Efficiently in .NET

https://medium.com/@mcansener/detecting-broken-image-urls-efficiently-in-net-059a070765e2?source=rss------csharp-5

Broken image URLs are easy to ignore when the dataset is small.

Difference Between Abstract Class and Interface in C# With Examples

https://www.c-sharpcorner.com/article/difference-between-abstract-class-and-interface-in-c-sharp-with-examples/

Explore the nuances of Abstract Classes vs. Interfaces in C#. Learn their key differences, use cases, and real-world examples for better C# development.

How to Use Joins in SQL With Real World Examples

https://www.c-sharpcorner.com/article/how-to-use-joins-in-sql-with-real-world-examples/

Master SQL joins! Learn INNER, LEFT, RIGHT, and FULL JOIN with real-world examples. Combine data from multiple tables for powerful insights and reporting.

IOptions, IOptionsSnapshot & IOptionsMonitor in .NET so much choice 4 something simple like settings

https://medium.com/@EdwardCurtin/ioptions-ioptionssnapshot-ioptionsmonitor-in-net-so-much-choice-4-something-simple-like-settings-92595c43a6b0?source=rss------dotnet-5

URL Pattern Matching in .NET

https://www.meziantou.net/url-pattern-matching-in-dotnet.htm

Working with URLs in .NET applications often involves pattern matching for routing, security policies, or content filtering. While you could write custom regex patterns or string comparisons, there's ...