I\'ve got the following... Mapper.CreateMap<string, string>().ConvertUsing(x => x.Clean()); ...but I only want to use this mapping when mapping between some types. If this mapping were to
I\'m starting a project with MVC 2 and would like to know if the following struct开发者_开发百科ure is a good approach in terms of design.
I have a custom type converter that converts UTC DateTime properties to a company\'s local time (talked about here: Globally apply value resolver with AutoMapper).
Im writing a test for an automapper map. One of the destination members in the map requires a value resolver, and that value resolver has service dependencies which are injected. I want to use the rea
HI, I am using autommaper in my app and for now I have one problem. When I use ConstructUsing method for specify constructor to map object, after that Automapper copy all other fields by default conv
I\'m considering automapper for an asp mvc intranet app I am writing. My controllers are currently created using Unity dependency injection, where each container gets dependencies unique to the reques
I got the following problem: I got a Entity (from EF Code First) that looks like this. public class Movie {
I have need to map PriorityId -> TcTaskPriorityId Mapper.Configuration.RecognizePrefixes(\"TcTask\");
(Again, an MVC validation question. I know, I know...) I\'d like to use AutoMapper (http://automapper.codeplex.com/) to validate fields in my Create Views for fields that are not in my database (and
Usually the property names are the same,but many properties have on one side a prefix. Classes may look like this