The .NET Dev Profile Banner
The .NET Dev Profile
The .NET Dev

@TheDotNetDev

8,645
Followers
1
Following
0
Media
1,710
Statuses

Tweeting out the best .NET posts from #DEVCommunity , powered by @ThePracticalDev 💜 Available via toot @devcommunity @dotnet .social 🦣

Joined April 2019
Don't wanna be here? Send us removal request.
@TheDotNetDev
The .NET Dev
6 months
Design Patterns in C# These are the design patterns you need to know to write great C# code. #DEVCommunity #dotNET
2
43
188
@TheDotNetDev
The .NET Dev
1 year
With FluentValidation, we can easily validate user input and ensure data integrity, reducing the chance of errors and improving the overall quality of our application. { author: @andytechdev } #DEVCommunity #dotNET
0
39
151
@TheDotNetDev
The .NET Dev
4 months
Implementing the Cached Repository Pattern in C# This guide will help you blend the Repository Pattern with Cache Pattern to share some benefits! #DEVCommunity #dotNET
0
36
140
@TheDotNetDev
The .NET Dev
1 year
The Options pattern is a powerful and versatile configuration method in .NET, particularly in Core. Here's how it works! #DEVCommunity #dotNET
2
25
135
@TheDotNetDev
The .NET Dev
1 year
We’re tackling 20 intermediate-level C# interview questions to level up your skills and amp up your problem-solving game. { author: @byte_hide } #DEVCommunity #dotNET
1
35
132
@TheDotNetDev
The .NET Dev
4 months
Cancellation Tokens in C# Let's take a look at the concept of task cancellation in general, and the way it works in C#. { author: @RasheedMozaffar } #DEVCommunity #dotNET
1
23
134
@TheDotNetDev
The .NET Dev
1 year
Let's check out how this open source framework can help us efficiently create, process, and manage background tasks in an application. #DEVCommunity #dotNET
1
24
112
@TheDotNetDev
The .NET Dev
25 days
Explore essential best practices for crafting efficient, secure, and scalable .NET Core Web APIs. Focus on performance, security, and maintainability. { author: @CodeWithBola } #DEVCommunity #dotNET
1
21
115
@TheDotNetDev
The .NET Dev
1 year
Dictionaries in C# are one of the more useful data structures you can use to store and retrieve data quickly. Let's explore how they work! #DEVCommunity #dotNET
1
13
113
@TheDotNetDev
The .NET Dev
2 months
Learn the essentials of async and await keywords in C# and how they can improve your code's efficiency with a clear, real-world example of asynchronous tasks. #DEVCommunity #dotNET
0
24
112
@TheDotNetDev
The .NET Dev
3 months
Learn how to build complex objects in C# with the Builder Pattern, making your code more modular, flexible, and scalable. #DEVCommunity #dotNET
0
30
109
@TheDotNetDev
The .NET Dev
2 months
Explore how the Repository Pattern in .NET can help create clean, modular, and maintainable code by abstracting the data access layer. #DEVCommunity #dotNET
0
17
105
@TheDotNetDev
The .NET Dev
1 year
I like to follow "Modern Microsoft" conventions and styles for C# and dotnet. Let me show you how they work! #DEVCommunity #dotNET
3
21
100
@TheDotNetDev
The .NET Dev
1 year
.NET developers have several options for implementing efficient and maintainable mappings. Let's explore a few of them! #DEVCommunity #dotNET
0
15
99
@TheDotNetDev
The .NET Dev
1 year
By understanding the concepts discussed in this post and incorporating them into your projects, you'll be well-equipped to build responsive and efficient .NET Core applications. #DEVCommunity #dotNET
1
23
98
@TheDotNetDev
The .NET Dev
3 months
🔧 Learn to create high-performance CRON jobs in .NET using Coravel, Dapper & more. Boost your system's efficiency step-by-step. 🕐🚀 { author: @jamesmh_dev } #DEVCommunity #dotNET
0
23
98
@TheDotNetDev
The .NET Dev
1 year
I will guide you on designing .NET class libraries to prevent breaking changes and demonstrate how to leverage the Microsoft.CodeAnalysis.PublicApiAnalyzers package to enforce these principles. Let's get to it! #DEVCommunity #dotNET
0
16
98
@TheDotNetDev
The .NET Dev
1 year
With only three lines of code, we can easily convert a .doc/.docx document to PDF with C#. Let's get to it! #DEVCommunity #dotNET
0
18
91
@TheDotNetDev
The .NET Dev
2 months
• Set up email sending in .NET effortlessly with FluentEmail • Supports providers like SMTP, SendGrid • Quick setup without unnecessary code distractions #DEVCommunity #dotNET
2
24
95
@TheDotNetDev
The .NET Dev
4 months
Understanding IQueryable<T> in C# Let's go a journey to demystify the IQueryable interface! { author: @RasheedMozaffar } #DEVCommunity #dotNET
0
29
94
@TheDotNetDev
The .NET Dev
9 months
Structuring a Clean Architecture Folder Get started on your spring cleaning early with a tidy architecture! #DEVCommunity #dotNET
1
12
93
@TheDotNetDev
The .NET Dev
1 year
TaskCompletionSource provides a way to use async/await with a value that can be set. Let’s take a look at this works. #DEVCommunity #dotNET
1
17
89
@TheDotNetDev
The .NET Dev
1 year
The advanced memory structures provided by .NET, like Span<T>, Memory<T>, and ReadOnlySequence<T>, can deliver significant efficiency and performance benefits. Here's how! #DEVCommunity #dotNET
1
17
89
@TheDotNetDev
The .NET Dev
4 months
Result Pattern Dive into the Result Pattern in C# on your journey to exception mastery! #DEVCommunity #dotNET
1
14
87
@TheDotNetDev
The .NET Dev
13 days
Explore the Factory Method pattern in C#. Centralize object creation without altering your main code when adding new types. #DEVCommunity #dotNET
0
15
91
@TheDotNetDev
The .NET Dev
7 months
A .NET Programmer's Guide to CancellationToken Let's put CancellationToken to work making HTTP requests and canceling API requests! { author: @rahulpnath } #DEVCommunity #dotNET
0
13
86
@TheDotNetDev
The .NET Dev
1 month
Exploring AutoMapper in .NET for object mapping: setup steps & scenarios where manual mapping is better. Find out when to use or avoid it! #DEVCommunity #dotNET
0
17
86
@TheDotNetDev
The .NET Dev
5 months
Pagination in C#: Complete Guide with Easy Code Examples 📚 All right, everyone -- turn to the next page of your book, and we'll get started on pagination. { author: @byte_hide } #DEVCommunity #dotNET
0
17
85
@TheDotNetDev
The .NET Dev
16 days
Discover how the Builder pattern can make constructing complex C# objects more intuitive with method chaining for readability and flexibility! #DEVCommunity #dotNET
0
10
86
@TheDotNetDev
The .NET Dev
4 months
Learn the fundamental steps to become a .NET Pro in 2024! Comprehensive guide to mastering all essentials from software basics to Core.👨‍💻🚀 #DEVCommunity #dotNET #DEVCommunity #dotNET
0
21
86
@TheDotNetDev
The .NET Dev
3 months
Explore 7 intriguing open-source C# projects! From generating PDFs to capturing your screen, get inspired and enhance your toolkit with these gems. { author: @dome_tena99 } #DEVCommunity #dotNET
1
22
79
@TheDotNetDev
The .NET Dev
3 months
Boost your C# app's performance with this guide on Cached Repositories utilizing the Decorator Pattern and Entity Framework Core. Dive in for advanced tips! #DEVCommunity #dotNET
1
21
84
@TheDotNetDev
The .NET Dev
1 year
.NET validation attributes are a powerful tool for ensuring data integrity across your applications. Here's how to make us of them! #DEVCommunity #dotNET
0
10
81
@TheDotNetDev
The .NET Dev
29 days
Explore how the AuthenticationHandler in Core secures user identity by managing authentication schemes like cookies and JWTs. #DEVCommunity #dotNET
0
17
83
@TheDotNetDev
The .NET Dev
5 months
Your Friendly Guide to Understanding gRPC in .NET with C# Become a messaging master as we C(sharp) gRPC in action! ✉ #DEVCommunity #dotNET
1
22
83
@TheDotNetDev
The .NET Dev
8 months
Better Implementation Of Singleton Pattern in .NET In this article, I'll explore a particular implementation (SingletonV1) and uncover some intricate issues it presents. #DEVCommunity #dotNET
0
11
79
@TheDotNetDev
The .NET Dev
1 month
Explore how to handle events in C# with delegates and the observer pattern. Learn through examples with Action and Func! #DEVCommunity #dotNET
0
13
80
@TheDotNetDev
The .NET Dev
1 year
I wanted to show a simple example of how Entity Framework Core works in .NET (specifically .NET 7). Let's get into it! { author: @MylesB93 } #DEVCommunity #dotNET
0
18
77
@TheDotNetDev
The .NET Dev
3 months
Learn how to run Kubernetes locally with Kind, Docker, and .NET 8. Detailed steps included. Perfect for those studying Kubernetes. Check it out! #DEVCommunity #dotNET
0
17
78
@TheDotNetDev
The .NET Dev
7 months
C#: From Fundamentals to Advanced Techniques — A Comprehensive Cheat Sheet Follow along to enhance your C# programming skills! { author: @sukhsukhpinder } #DEVCommunity #dotNET
1
14
79
@TheDotNetDev
The .NET Dev
2 months
Explore how to seamlessly integrate a .env file into .NET Core's IConfiguration for efficient environment management in C# applications. { author: @RicardoDeMauro } #DEVCommunity #dotNET
0
14
78
@TheDotNetDev
The .NET Dev
2 months
Explore various ways to containerize your .NET apps beyond just using a Dockerfile. Learn about MSBuild and .NET Aspire for streamlined workflows. { author: @justinchronicle } #DEVCommunity #dotNET
0
13
77
@TheDotNetDev
The .NET Dev
7 months
Modern C# Development: Record Types 101 Today, we're diving into the world of records in C#—a fairly new addition to the C# language that can simplify your code. { author: @lovelacecoding } #DEVCommunity #dotNET
0
14
75
@TheDotNetDev
The .NET Dev
14 days
Explore C# Lists: Learn dynamic collection management, type safety, and practical examples. Perfect for advancing your C# skills! #DEVCommunity #dotNET
0
11
77
@TheDotNetDev
The .NET Dev
7 months
async await in C#: 3 Beginner Tips You Need to Know I’ll highlight 3 beginner tips for using async await in C#. { author: @DevLeaderCa } #DEVCommunity #dotNET
2
13
75
@TheDotNetDev
The .NET Dev
2 months
Learn the latest in .NET routing! This article dives into updates, endpoint routing, attribute routing, and more. A must-read for devs working with .NET 7/8. { author: @DotNetDevABP } #DEVCommunity #dotNET
0
13
76
@TheDotNetDev
The .NET Dev
1 year
When it comes to security in web applications, one of the main challenges is ensuring user authentication and authorization. Here's how JWT can help. #DEVCommunity #dotNET
0
17
74
@TheDotNetDev
The .NET Dev
2 months
Enhance your API security with essential practices like robust authentication, HTTPS, input validation, and more for safeguarding data and access. #DEVCommunity #dotNET
0
18
74
@TheDotNetDev
The .NET Dev
3 months
Discover how C# source generators can automate repetitive tasks in development. This guide shows you how to create and use an enum generator in .NET. #DEVCommunity #dotNET
0
16
76
@TheDotNetDev
The .NET Dev
3 months
Explore developing a furniture e-commerce web API with .NET Clean Architecture and MongoDB for scalability and flexibility. Learn best practices here. { author: @iamcymentho } #DEVCommunity #dotNET
0
16
75
@TheDotNetDev
The .NET Dev
2 months
Implement API Key Authentication in .NET 8 to secure your API, limit access, and monetize effectively. Learn the steps to integrate it smoothly. #DEVCommunity #dotNET
0
21
75
@TheDotNetDev
The .NET Dev
6 months
Middleware in .NET 8 Run, Use, and Map your way to middleware success! { author: @admir_live } #DEVCommunity #dotNET
0
11
73
@TheDotNetDev
The .NET Dev
2 months
Learn to implement social authentication in .NET Web API, offering Google and Facebook login integration. Dive into server-side setup with .NET 6. #DEVCommunity #dotNET
1
19
72
@TheDotNetDev
The .NET Dev
1 month
Explore using SQLite as an in-memory database. Learn how to create, operate, and manage data with faster access. #DEVCommunity #dotNET
0
13
73
@TheDotNetDev
The .NET Dev
2 months
Finished my microservices project using .NET 8! It features efficient tech like the Azure Service Bus & Ocelot API Gateway. Check it out! { author: @MidnightASC } #DEVCommunity #dotNET
2
19
71
@TheDotNetDev
The .NET Dev
8 months
Amazon MQ RabbitMQ: A Reliable Messaging Solution for Your .NET Projects Let's learn how to set up RabbitMQ and start using it to send and receive messages from a .NET application. { author: @rahulpnath } #DEVCommunity #dotNET
0
8
68
@TheDotNetDev
The .NET Dev
4 months
Understanding Background Services in .NET 8: IHostedService and BackgroundService Explore these two services to see how they can help you with your long-running operations! #DEVCommunity #dotNET
0
12
71
@TheDotNetDev
The .NET Dev
6 months
C# Delegates In Practice — Implementing Observer Pattern With Delegates Sometimes classes need to exchange information with each other without knowing each other directly. Here's how to do it. #DEVCommunity #dotNET
0
19
71
@TheDotNetDev
The .NET Dev
2 months
Learn how to use HttpClient in .NET to fetch a file's size from a URL with the HEAD method, ensuring efficient downloads without excess data. #DEVCommunity #dotNET
1
15
68
@TheDotNetDev
The .NET Dev
2 months
Explore how to use the CQRS pattern with MediatR in .NET 8. Learn to separate read and write operations for greater scalability! { author: @DotNetDevABP } #DEVCommunity #dotNET
2
12
66
@TheDotNetDev
The .NET Dev
3 months
Learn about set operations, quantifiers, and aggregation with LINQ in part 2. Dive deeper into collections & data manipulation in C#. Read more: { author: @mirzaleka } #DEVCommunity #dotNET
1
13
68
@TheDotNetDev
The .NET Dev
2 months
Unlock the potential of async/await in C#. Master the art of asynchronous programming to build more responsive apps, the right way. #DEVCommunity #dotNET
1
9
66
@TheDotNetDev
The .NET Dev
1 year
To help you confidently tackle questions on exception handling in C# in your interview, we have put together a comprehensive list of questions and answers that delve into various aspects of the subject. { author: @byte_hide } #DEVCommunity #dotNET
0
17
67
@TheDotNetDev
The .NET Dev
1 month
Explore integration testing for .NET apps using Docker with TestContainers. Discover efficient setup steps in this detailed guide. { author: @cephalopodluke } #DEVCommunity #dotNET
0
12
66
@TheDotNetDev
The .NET Dev
4 months
Learn how to implement JWT Bearer Token Authentication in .NET 8.0 for secure API development. Dive into the detailed guide and examples. { author: @meetToSandy } #DEVCommunity #dotNET
1
16
65
@TheDotNetDev
The .NET Dev
1 year
We’ve all faced challenges while managing data in C#, but what if I told you there’s a tool in C# that might help you with managing data validation effectively? { author: @byte_hide } #DEVCommunity #dotNET
0
12
64
@TheDotNetDev
The .NET Dev
1 year
A transaction is a sequence of operations performed as a single logical unit of work. They follow the ACID properties: Atomicity, Consistency, Isolation, and Durability. { author: @byte_hide } #DEVCommunity #dotNET
0
21
65
@TheDotNetDev
The .NET Dev
3 months
Discover how to manage and efficiently use multiple DbContexts in a single query execution with practical code examples and techniques in .NET. #DEVCommunity #dotNET
0
10
61
@TheDotNetDev
The .NET Dev
2 months
Explore delegates, events & lambdas in C#. Learn how these advanced features enhance code flexibility and maintainability for efficient programming. #DEVCommunity #dotNET
0
21
63
@TheDotNetDev
The .NET Dev
1 year
It's certainly easier to handle authentication and authorization with the recent improvements from Microsoft, and it sure seems like a very promising step in the right direction! #DEVCommunity #dotNET
0
10
62
@TheDotNetDev
The .NET Dev
5 months
.NET Aspire is the best way to experiment with Dapr during local development In this article, I'll show you how to use Dapr with .NET Aspire for an unparalleled local development experience. #DEVCommunity #dotNET
0
9
61
@TheDotNetDev
The .NET Dev
1 month
Build a .NET Blazor app to scan barcodes & QR codes. Learn to leverage interop between C# & JavaScript for seamless functionality integration. { author: @yushulx } #DEVCommunity #dotNET
0
7
62
@TheDotNetDev
The .NET Dev
5 years
One of the most exciting features of .NET Core 3.0 and C# 8.0 has been the addition of IAsyncEnumerable<T> (aka async streams). But what's so special about it? What can we do now that wasn't possible before? { author: @nthonyChu }
0
22
61