As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question...
I’m using AutoMapper in an ASP.NET MVC application. I was told that I should move the AutoMapper.CreateMap elsewhere as they have a lot of overhead. I’m not too sure...
Is there a way to tell AutoMapper to ignore all of the properties except the ones which are mapped explicitly? I have external DTO classes which are likely to...
How can I use automapper to update the properties values of another object without creating a new one? 3 Answers 3
I’m relatively new at .NET, and I decided to tackle .NET Core instead of learning the “old ways”. I found a detailed article about setting up AutoMapper for .NET...
I’m using Automapper and I have the following scenario: Class OrderModel has a property called ‘ProductName’ that isn’t in the database. So when I try to do the mapping...