Mapping objects made easy with AutoMapper
What's AutoMapper AutoMapper is a powerful tool for .NET developers used for object mapping, created by Jimmy Bogard. It is used to map different objects (classes or structs in our…
What's AutoMapper AutoMapper is a powerful tool for .NET developers used for object mapping, created by Jimmy Bogard. It is used to map different objects (classes or structs in our…
In this tutorial I will show you how to integrate one of the most complete and easy to use authentication system in your aspnet core web application. This is called…
In the last couple of years, it happened quite often that I had to build a web application to serve as a backoffice administration panel. So I took a fresh…
Intro Dependency injection is a programming technique where an object (the client) gets a dependency (i.e. a service) supplied by another object (the injector). This way the client delegates the…