A convention-based object-to-object mapper and transformer for .NET
Let's say I have two model classes: public class People { public string FirstName {get;set;} public string LastName {get;set;} } …
c# automapperSuppose I have the following entities (classes) public class Target { public string Value; } public class Source { public string Value1; public …
c# lambda automapper automapper-2I've got some problems using EF with AutoMapper. =/ for example : I've got 2 related entities ( Customers and Orders ) and they're DTO …
c# entity-framework automapper dtoI had defined in my project a global Automapper configuration that would allow me to use Mapper.Map<targetType&…
c# automapperI have the following Automapper defintion: Mapper.CreateMap<IB.BusinessComponents.Data.LocationMaster, IB.Entites.Master.Location>(); Mapper.CreateMap&…
automapperI am using auto mapper to map multiple objects (db class into ui objects). Map 1: Mapper.CreateMap<sourceone, destination&…
c# asp.net-mvc automapperI have a public facing interface that I'm trying to map two different enumerations to each other. I tried to …
c# automapperI worked on a asp.net core 1.1 project a while ago and use in projetc AutoMapper. in asp.net core 1.1, …
asp.net-mvc asp.net-core automapper asp.net-core-2.0I have the case where I want to map an entity to a viewmodel and back. I have to specify …
.net automapper bidirectionalI am trying to introduce Automapper into an application for the first time, but I keep getting an error saying …
c# entity-framework automapper