A convention-based object-to-object mapper and transformer for .NET
I have a services that is calling another services. Both of the services are using "the same classes". The classes …
c# automapperI know a lot of questions have been asked regarding this topic, but none of them provided an answer for …
c# automapper mappingexceptionI have the following Dto and entity with a nested sub entity. public class Dto { public string Property { get; set; } …
c# .net nested automapper dtoSo I've build a WebAPI from scratch, including some best practices that I've found online such as Dependency Injection and …
unit-testing asp.net-web-api moq automapper structuremapI am trying to unit test a UpdateUser Controller that uses AutoMapping. Here is the code for the controller UpdateUserController …
asp.net-mvc moq automapper xunitI have an object graph that I'm loading from a database using EF CodeFirst and AutoMapper into DTOs:- public …
c# automapper iqueryablepublic class Person { Name { get; set; } IEnumerable<Address> Addresses { get; set; } } public class PersonModel { Name { get; set; } IEnumerable&…
c# .net automapperI am very interested in Linq to SQL with Lazy load feature. And in my project I used AutoMapper to …
linq-to-sql automapperusing (IDataReader dr = DatabaseContext.ExecuteReader(command)) { if (dr.Read()) { AutoMapper.Mapper.CreateMap<IDataReader, ProductModel>(); return AutoMapper.Mapper.Map&…
c# automapper idatareaderI am new to AutoMapper and using version 6.2.2. I am trying to map a view model to an entity (also …
c# automapper automapper-6