A convention-based object-to-object mapper and transformer for .NET
I've started to use https://github.com/robconery/massive for a project, I wonder if there is any mapping tool …
c# automapper massiveI am using AutoMapper in my ASP.NET MVC website to map my database objects to ViewModel objects and I …
c# automapperWhat are the different alternative frameworks available for object to object mapping in .NET apart from AutoMapper Currently we're planning …
.net automapperI do want to test the custom logic in the CreateMap method. I do NOT want to test whether the …
unit-testing automapperI 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-2I'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 automapperI have two classes like so: public class SentEmailAttachment : ISentEmailAttachment { public SentEmailAttachment(); public string FileName { get; set; } public string ID { …
c# automapperHave this scenario: public class Base { public string Name; } public Class ClassA :Base { public int32 Number; } public Class ClassB :Base { …
c# inheritance automapperAccording to the AutoMapper Documentation, I should be able to create and use an instance of a Custom Type Converter …
c# automapper typeconverterIgnoring the ResolveUsing overloads that take an IValueResolver, and looking only at these 2 methods: void ResolveUsing(Func<TSource, object&…
automapper automapper-2