Test Data Generation With AutoFixture in .NET
In this article, we will explore how to automate test data generation, enhance productivity, improve test coverage, and reduce maintenance efforts with a single library called AutoFixture.
VIDEO: .
Parsing HTML is a common operation in programming....
Value Objects in C#
In this article, we are going to dive into a very interesting concept in domain-driven design: value objects. We will take a look at many aspects of value objects, what makes them useful, and discuss situations where they may not be appropriate. There has been a lot of recent...
How to Get Class Name as String in C#
In our programming journey, there are times when we might find ourselves in a situation where we need to obtain the class name as a string. This proves beneficial for many reasons, such as logging, debugging, or other programming endeavors. In C#, there are different...
How to Add a Global Route Prefix in ASP.NET Core
In this article, we will learn how to add a global route prefix in ASP.NET Core. This enables us to effortlessly incorporate the route prefix into our application's routing mechanism, offering greater flexibility and control. If you're into security, you're 100% familiar with Cross-Site Request Forgery...