0
votes
1answer
38 views

Automapper - Ignore property on base class

I'm having difficulty ignoring a property on an class which inherits from a base class. Mapper.CreateMap<FormViewModelBase, EntityBase>() .Include<FormViewModel, Entity>() .ForMember(x ...
2
votes
1answer
35 views

How to tell Automapper to check if all source properties have destination properties

We have two classes: public class Foo { public int A { get; set; } public int B { get; set; } public int C { get; set; } } public class Bar { public int A { get; set; } public ...
1
vote
0answers
33 views

AutoMapper and Reconciliation?

How can I reconcile a list using auto mapper? For example given a class public class SomeEntity { public Guid Id {get; set;} public string Name {get; set;} } And an overaching class ...
0
votes
1answer
63 views

Automapper: Hydrate int? based on conditions

I have the following code: [Test] public void ConditionalMapping() { var src = new Sample1 {Age = 1, Number = null}; var dest = new Sample2 {Age = null, Number = 1}; Hydrate(src, dest, ...
0
votes
0answers
19 views

AutoMapperMappingExtensions was unhandled by user

I'm developing an applications, it involves a dropdownlist with image and text in MVC4. For instance, displaying image (Country Flag) with name of the country. I've used AutoMapper, IEnumerable. It ...
5
votes
2answers
133 views

Projection using contextual values in AutoMapper

I'm currently evaluation whether AutoMapper can be of benefit to our project. I'm working on a RESTful Web API using ASP.NET Web API, and one of the things I must return is a resource that contains ...
0
votes
1answer
24 views

AutoMapper suggestion required

I have below classes class Contact { string FirstName; string LastName; List<Phone> ContactNumbers; } class Phone { string Number; PhoneType Type; } enum ...
2
votes
0answers
74 views

Automapper 2 - unflattening entity to VM

I have a flat POCO Entity and a structured View Model (that is used for rendering a form with custom EditorFor helpers). Is there any easier way in Automapper 2 to do something like that: ...
1
vote
1answer
107 views

AutoMapper for Custom Complex Types

I have Two Complex Types : One is into the Service Layer which serves as a ViewModel and other at the Repository Layer. They are defined as given below : //The Repository Layer public class ...
0
votes
2answers
109 views

AutoMapper: Mapping child member from complex type to string[]

I have a destination type with a string[] property. Animal string[] Barks; My source object is: AnimalDTO List<BarkTypes> Barks; How do I map BarkTypes.NameOfBark to the string[] ...
1
vote
2answers
125 views

AutoMapper: What is the difference between MapFrom and ResolveUsing?

Ignoring the ResolveUsing overloads that take an IValueResolver, and looking only at these 2 methods: void ResolveUsing(Func<TSource, object> resolver); void ...
1
vote
0answers
182 views

AutoMapper throwing NullReferenceException when mapping nullable enum to null

I can't seem to figure out why AutoMapper is throwing an exception for this mapping: public class MyDestinationType { public MyCustomEnum? PropName { get; set; } } public enum MyCustomEnum { ...
3
votes
1answer
320 views

Mapping one source class to multiple derived classes with automapper

Suppose i have a source class: public class Source { //Several properties that can be mapped to DerivedBase and its subclasses } And some destination classes: public class DestinationBase { ...
1
vote
1answer
174 views

Use automapper to update destination object and set nullable type property value to null

It seems that nullable type properties in source is ignored and not copied to destination. Consider these classes: public class Source { public int? Test { get; set; } } public class ...
0
votes
0answers
47 views

How to use AutoMapper for a source class with multiple view classes which are derived from each other

My history is mainly C/C++, but I've recently been thrown into the c#/.net world. Please be gentle. I'm trying to use automapper to map a single domain entity class to MULTIPLE views. So, it is ...
0
votes
0answers
94 views

AutoMapper 2.1.267.0 does not map simple int? property

I have the following classes Source: public class NewBusinessSubmission { //other properties public int? TermTypeId { get; set; } } Destination: NewBusinessSubmission class ...
1
vote
0answers
208 views

Bootstrapper.AutoMapper and Profile registration order

I'm working on an ASP.NET MVC 3 application using AutoMapper 2.2.0. I have some AutoMapper profiles declared and when I initialize them manually everything works just fine. ...
3
votes
1answer
399 views

AutoMapper — inheritance mapping not working, same source, multiple destinations

Can I use inheritance mapping in AutoMapper (v2.2) for maps with the same Source type but different Destination types? I have this basic situation (the real classes have many more properties): ...
0
votes
1answer
69 views

Autoproject several sequences into the main ViewModel via Automapper

I'm trying to auto project from SQL server with Automapper some data into my view models. The view model I have is: public sealed class WorkstationViewModel { public int Id { get; set; } ...
2
votes
2answers
197 views

How to prevent values in “Target” object being overwritten by nulls from “Source” object when using ValueInjector or Automapper? Nested Mapping Issue?

My Problem "Source" object Properties of the same class that do not exist in the View, are overwritting the same properties in the "Target" object with nulls. How do I prevent this? In affect how do ...
1
vote
0answers
191 views

How to map properly with Automapper?

I'm working on an application which uses Automapper, Unit Of Work, Entity Framework 5, ASPNET MVC 4, WebApi and Windsor Castle from Nuget. I'm not sure if I should map this or it should be mapped by ...
1
vote
1answer
157 views

AutoMapperMappingException Mapping types: Double -> Double

I am getting the following exception when I try to call Mapper.Map in my application: AutoMapper.AutoMapperMappingException. Mapping types: Double -> Double System.Double -> System.Double ...
25
votes
1answer
482 views

Is this a breaking change between AutoMapper 2.0.0 and 2.2.0?

I updated from AutoMapper 2.0.0 to 2.2.0 today and realized the update broke some code. Wanted to ask about it here before posting as an issue on the automapper github site. One of my destination ...
1
vote
2answers
70 views

Can AutoMappers AllowNullCollections setting be constrained to a profile?

Note: I have also asked this question on the AutoMapper mailing list My MVC application essentially has two levels of mapping (simplified for this question): RepositoryObject <-> Entity ...
1
vote
1answer
57 views

How to Map String Literal to Destination Property

I'd like to be able to do something like this using automapper: Mapper.CreateMap<Source, Destination>() .ForMember<d => d.Member, "THIS STRING">(); I'd like d.Member to always be ...
1
vote
1answer
571 views

AutoMapper complex object mapping - mapping a list

I have the following classes. The domain models are created by entity framework and i am using POCO. public class Customer { public int Id { get; set; } public string Name { get; set; } ...
1
vote
2answers
437 views

Automapper throws System.ArgumentException

I've updated AutoMapper to its version 2 and I've got a lot a problems with it now... I've got a list of ItemToMap and all of these objects have got a reference to the same object Tag When I try to ...
1
vote
1answer
69 views

Convention for mapping collections to scalars via LINQ in Automapper

Automapper already does some nice convention stuff like mapping sub-properties by naming convention e.g. OrderTotal would map from Order.Total if such a property on a property existed. I was ...
1
vote
2answers
170 views

Automapper copy based on destination value

I am trying to copy source value only if the destination value is null. I am using the following map Mapper.CreateMap<BM.AudioSetting, BM.AudioSetting>() .ForMember(dest => ...
1
vote
3answers
77 views

How to retrieve an Entity when using AutoMapper

I use MVC in Asp.net using AutoMapper. As you can see from this code Event eventObj = Mapper.Map<EventEditViewModel, Event>(eventEditViewModel); I'm trying to convert map EventEditViewModel ...
0
votes
1answer
108 views

No way to save entity when navigation properties are null, but Ids are filled

I recently migrated my project to MVC4 Web API. Prior to that I used standard MVC controllers. Upon postback of an entity, I used UpdateModel to update the model and then persist it to the database ...
0
votes
0answers
67 views

Dynamically build map at runtime using xml?

I have an XML file that defines a map for an object -- it basically tells me to map: A -> _a B -> _b C -> SomeFunction(_d) I'd like to parse this at runtime (easy enough) and then somehow ...
0
votes
1answer
50 views

Why do I get odd AutoMapped results if I map directly from IEnumerable to IEnumerable?

I am having a strange issue with AutoMapper. If I do the following //Get my entities from EF repository var movements = _movementRepository.AllIncluding(movement => movement.Asset, movement => ...
2
votes
2answers
539 views

AutoMapper: Set all properties of destination object to default if source object is null for specified types

Is it possible to configure AutoMapper to set all properties to default value in case if the source object is null for specified classes? I know that I should use Mapper.AllowNullDestinationValues = ...
5
votes
1answer
195 views

AutoMapper not working with collection of derived classes

I'm facing a problem with AutoMapper 2.1.267.0 when working with objects containing collections of derived classes. I've isolated my problem in a simpler scenario with the following classes: public ...
3
votes
1answer
364 views

AutoMapper Custom Type Converter not working

I am using Troy Goode's PagedList to provide paging information in my WebApi. His package returns an IPagedList that implements IEnumerable but also contains custom properties such as IsLastPage, ...
2
votes
0answers
478 views

AutoMapper mapping using interface vs concrete map

I don't think this is possible, but it's worth the question, I suppose. I have the following types that share an interface (I promise, this isn't the same question I've asked before). public ...
0
votes
1answer
217 views

AutoMapper mapping two concrete classes that share an interface

I have an interface that describes two objects. One is a DAO, the other is a BO. So, here's what it looks like: public interface IOrder ... public class OrderDAO : IOrder ... public class OrderBO ...
1
vote
1answer
196 views

Automatic discovery of automapper configurations

When you create a controller in MVC, you don't have to do any additional registration for it. Same goes with adding areas. As long as your global.asax has an AreaRegistration.RegisterAllAreas() call, ...
0
votes
1answer
74 views

Unmapped field on destination is set to null

I am using Automapper for mapping two objects. I have field VehicleModel in the destination which has some default value. I don't have a mapping for this destination field in the source. So I didn't ...
0
votes
2answers
915 views

Automapper expression must resolve to top-level member

I am using automapper to map source and destination objects. While I map them I get the below error. Expression must resolve to top-level member. Parameter name: lambdaExpression I am not able ...
3
votes
1answer
863 views

AutoMapper Map properties of nested objects if Not Null

I have the following sample objects.. public class ComplexObject { public string Name { get; set; } public SimpleObject Child1 { get; set; } public SimpleObject Child2 { get; set; } ...
1
vote
2answers
490 views

AutoMapper - Nested mapping whilst preserving selected child properties

So i have this; public class Parent { public string SomeProperty { get; set; } public Child ChildProperty { get; set; } } public class Child { public string ChildProperty { get; set; } public ...
1
vote
1answer
284 views

Map list to exisitng list in Automapper using a key

Automapper easily handles mapping one list of object types to another list of different objects types, but is it possible to have it map to an existing list using an ID as a key?
0
votes
2answers
307 views

Automapper with NHibernate - How to persist mapped objects?

I have an ASP.NET MVC application that uses Fluent NHibernate and AutoMapper. I am primarily using AutoMapper to map my Models to ViewModels and vice versa. When doing the latter, mapping from my ...
0
votes
1answer
361 views

Automapper Model > ViewModel Mapping Exception

I have the following Models and ViewModels (edited for brevity): public class Advert { public virtual long Id { get; set; } public virtual string Title { get; set; } public virtual string ...
2
votes
2answers
439 views

Using AutoMapper to map the property of an object to a string

I have the following model: public class Tag { public int Id { get; set; } public string Name { get; set; } } I want to be able to use AutoMapper to map the Name property of the Tag type to ...
9
votes
1answer
994 views

AutoMapper using the wrong constructor

Today I upgraded a fully functioning application using AutoMapper v1.1 to now use AutoMapper v2.1 and I am coming across some issues that I never encountered using the previous version. Here is an ...
2
votes
1answer
114 views

automapper boolean properties to yes or no

For a mapping between TypeA and TypeB i would like all the boolean properties to be mapped to 'Yes' or 'No'. I don't want to override the <bool, string> mapping since i want that just for the ...
0
votes
1answer
120 views

Mapping multiple collections to a single collection using Automapper

I am able to map group of sametype of collections to a single collection using the below code. AutoMapper.Mapper.CreateMap<Source, Destination>().ForMember( dest => ...

1 2