Top "Automapper" questions

A convention-based object-to-object mapper and transformer for .NET

Allow mapping of dynamic types using AutoMapper or similar?

I've started to use https://github.com/robconery/massive for a project, I wonder if there is any mapping tool …

c# automapper massive
Using Profiles in Automapper to map the same types with different logic

I am using AutoMapper in my ASP.NET MVC website to map my database objects to ViewModel objects and I …

c# automapper
Alternatives to AutoMapper

What are the different alternative frameworks available for object to object mapping in .NET apart from AutoMapper Currently we're planning …

.net automapper
Unit test the Automapper profiles

I do want to test the custom logic in the CreateMap method. I do NOT want to test whether the …

unit-testing automapper
Updating user by UserManager.Update() in ASP.NET Identity 2

I use ASP.NET Identity 2 in an MVC 5 project and I want to update Student data by using UserManager.Update() …

c# asp.net-mvc asp.net-identity automapper asp.net-identity-2
How to handle custom Properties in AutoMapper

I've got a ViewModel that takes some Model data and slightly alters it. The way I'm doing it "works" since …

c# asp.net-mvc-3 viewmodel automapper
Automapper failing to map on IEnumerable

I have two classes like so: public class SentEmailAttachment : ISentEmailAttachment { public SentEmailAttachment(); public string FileName { get; set; } public string ID { …

c# automapper
AutoMapper and inheritance - How to Map?

Have this scenario: public class Base { public string Name; } public Class ClassA :Base { public int32 Number; } public Class ClassB :Base { …

c# inheritance automapper
AutoMapper custom type convert using ConstructServicesUsing

According to the AutoMapper Documentation, I should be able to create and use an instance of a Custom Type Converter …

c# automapper typeconverter
AutoMapper: What is the difference between MapFrom and ResolveUsing?

Ignoring the ResolveUsing overloads that take an IValueResolver, and looking only at these 2 methods: void ResolveUsing(Func<TSource, object&…

automapper automapper-2