Browsing Tag
dotnet
97 posts
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…
Struct vs Class in C#: Choosing the Right Data Type
In C#, there are two primary object types that developers can use to build their code: structs and…
ASP.NET Core in .NET 8 is Coming! Discover its NEW Features🚀
ASP.NET Core has received updates in .NET 8 Preview 1, including Blazor United, improved route tooling, and HTTP/3…
Memory Management
When dealing with memory management on .NET garbage collection comes to mind as something that you have to…