Top "Automapper-3" questions

Use this tag for version specific questions about AutoMapper 3 - the convention-based object-to-object mapper and transformer library for .NET.

Automapper: passing parameter to Map method

I'm using Automapper in a project and I need to dynamically valorize a field of my destination object. In my …

c# .net automapper-3
AutoMapper.Mapper.CreateMap<TSource,TDestination>()' is obsolete

I have to classes Like class A { public int id {get; set;} } class B { public C c {get; set;} } class …

c# asp.net asp.net-mvc-4 automapper automapper-3
Automapper and mapping list within a complex object / nested mappings

I am having a heck of a time converting from older mapping standards to automapper. Here are my classes // Models …

c# automapper-3
Automapper causing error: missing type map configuration or unsupported mapping

I am new to Automapper. I have added Nuget package - Automapper into my Manager (BLL) and DAL layer. Now, …

entity-framework-6 nuget-package automapper-3
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 IEnumerable<something> to IEnumerable<somethingelse> without creating a map configuration

I cannot get the following to work, where array is an array of CustomerContract's: Mapper.Map<IEnumerable<Customer&…

c# automapper-3
Automapper map one property to multiple

I am facing a challenge with AutoMapper between my source object and destination object. I will try to explain the …

c# visual-studio-2010 automapper automapper-2 automapper-3
Automapper 3.0 - This type is not supported on this platform IMapperRegistry

I updated my project to use Automapper 3.0.0 and now my TFS build is not succeeding. The error is the following: "...…

automapper notsupportedexception automapper-3
AutoMapper TwoWay Mapping with same Property Name

Given these two objects public class UserModel { public string Name {get;set;} public IList<RoleModel> Roles {get;set;} } …

c# automapper-3