Browsing Tag
dotnet
80 posts
.NET 8 is on the Way! 7 Features that will blow your mind 🤯
Howdy, fellow developers! Here’s another exciting journey that we’re about to embark on, exploring the brand new features…
From Converters to Dependency Injection: Navigating Model Migrations
Do you know the three-layer software design? Think of it as tech’s equivalent of a sandwich with neatly…
Fields vs Properties in C# OOP - Which one should you use?
Understanging “Fields” In the object-oriented programming (OOP) approach of C#, a field is a class or struct level…
Saia do Loop – Data Annotation.
Bem vindo a série Saia do Loop ! No tutorial de hoje nós vamos falar de Data Annotation…
Dependency injection in action filters in ASP.NET Core
It is quite common to decorate the ASP.NET MVC controller actions with filter attributes to differentiate cross-cutting concerns…
Singleton Design Pattern in C#: Full Guide
Have you ever wondered how to maintain a unique instance throughout the lifecycle of an application and ensure…
Mastering Design Patterns in .NET: Beginner-Friendly AI Examples for Effective Learning
For quite some time, I’ve been fascinated by the 23 Gang of Four (GoF) design patterns – powerful…
BIG surprise! aspx files in .NET Core
.NET Core issues In .NET Core, there are problems such as the bad complexity of web programming and…
Transactions in .NET: From Basics to Best Practices
What is a Transaction in .NET? A transaction is a sequence of operations performed as a single logical…
To mock, or not to mock, that is the question
TLTR Mocking is often seen as a default choice when writing tests. Yet it might introduce unnecessary complexety…