Top "Automapper" questions

A convention-based object-to-object mapper and transformer for .NET

how to map an anonymous object to a class by AutoMapper?

I have an entity: public class Tag { public int Id { get; set; } public string Word { get; set; } // other properties... // and …

c# mapping automapper anonymous-types
How to configure Auto mapper in class library project?

I am using auto mapping first time. I am working on c# application and I want to use auto mapper. (…

c# automapper automapper-2 automapper-3
Automapper with resolver throwing "Error mapping types"

We have a class inside another class as a property which needs to be mapped using Automapper. We have written …

c# automapper automapper-5
How inject service in AutoMapper profile class

I need to use a service layer in the AutoMapper profile class in ASP.NET Core but when I inject …

asp.net-core automapper
Using AutoMapper to unflatten a DTO

I've been trying to use AutoMapper to save some time going from my DTOs to my domain objects, but I'm …

mapping automapper
AutoMapper - how to use custom value resolver inside custom type converter

How can I use custom value resolvers inside custom type converter? Currently, it seems to me hard to achieve. Do …

c# mapping automapper typeconverter resolver
Merge two objects to produce third using AutoMapper

I know it's AutoMapper and not AutoMerge(r), but... I've started using AutoMapper and have a need to Map A …

automapper
ASP.net MVC - Should I use AutoMapper from ViewModel to Entity Framework entities?

I am currently using AutoMapper to map my Entity Framework entities to my View Model: public class ProductsController : Controller { private …

c# asp.net-mvc entity-framework automapper
Configuring AutoMapper 4.2 with built in IoC in ASP.NET Core 1.0 MVC6

I am trying to figure out the proper way to configure AutoMapper in my application's Startup.cs file and then …

c# asp.net automapper asp.net-core-1.0
Automapper for Java

Is there Java equivalent of .Net's Automapper?

java .net mapping automapper