The automapper tag has no wiki summary.
0
votes
0answers
28 views
Is explicity declaring each mapping my only option if my viewmodel property names don't match my entities?
Using automapper is this my only option?
CreateMap<Parcel, ParcelResultItemViewModel>()
.ForMember(p => p.AssessmentDescription, o => o.MapFrom(s => ...
1
vote
1answer
226 views
Using AutoMapper in ASP.Net MVC
I'd like to check my understanding and usage of the AutoMapper in my ASP.Net MVC app.
I setup the maps in Application_Start:
Mapper.CreateMap<Customer, CustomerViewModel>();
...