Version 2 of a convention-based object-to-object mapper and transformer for .NET

learn more… | top users | synonyms

0
votes
1answer
33 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
32 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 ...
0
votes
1answer
19 views

Automapper flatten with derived type properties

I'm using an automapper to flatten the object coming from WS. Simplified model would be as follows: public abstract class AOrder { public Product Product {get;set;} public decimal Amount ...
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
61 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 ...
1
vote
1answer
22 views

Automapper failing on double? property

I'm using AutoMapper to map Domain objects to ViewModel objects in my controller. Everything was working fine until I tried adding double? properties. I've started getting the following error: ...
0
votes
1answer
44 views

How to pull in data from another table in repository or in automapper?

I am essentially am trying to find a clean way to pull in data from another table. Below is a simplified version of my model. My goal is to put the platform name in the userplatform. I would like ...
0
votes
1answer
37 views

Saving Model is cascading update when I only want the main model updated

I am using C# Web API and I am using the repository standard to save to the database. Below is a shortened example I am using to update the database. So I use automapper to flatten between user to ...
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
3answers
71 views

using AutoMapper to map a viewmodel to a model interface

I have created a AutoMapper mapping configuration class code below: public static class MilitaryBrochureViewModelMapper { public static void Configure() { ...
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
73 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: ...
3
votes
3answers
356 views

How to optimize Entity Framework query when using spatial types and automapper?

What I'm building is not something very unique. In a nutshell I'm creating a small FourSquare like service running in Azure using ASP.NET MVC 4(Web Api) and Entity Framework 5 (with Spatial support). ...
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
108 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[] ...
0
votes
1answer
232 views

Random “Missing type map configuration or unsupported mapping.” Error in Automapper

My Entity: /// <summary> /// Get/Set the name of the Country /// </summary> public string CountryName { get; set; } /// <summary> /// Get/Set the ...
1
vote
2answers
120 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
179 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
304 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
171 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
45 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
2answers
113 views

Is it possible to get LINQ projections from WCF service?

Automapper has a very nice extensions for getting projections. In BL of our application we can just define methods like this: IEnumerable<TEntityProjection> GetProjections() { return ...
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
206 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. ...
2
votes
1answer
111 views

Automapper merge/combine mappings

Let's assume I have these mappings: var mapping1 = Mapper.CreateMap<Order, BaseDto>() .ForMember(o => o.Referrer, m => m.Ignore()); var mapping2 = Mapper.CreateMap<Order, ...
1
vote
2answers
59 views

How to make mapping between List<string> and a string?

I have a Model an ViewModel Like this, but mapping doesn't pass! MyModel: public List<string> ContentLinks { get; set; } public string ListOfContentLinks { get { return ...
3
votes
1answer
394 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
68 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; } ...
0
votes
1answer
115 views

AutoMapper Throwing Exception When Mapping Against Two Different Collection Types

I'm writing a ASP.NET Web API service which uses AutoMapper for object mapping. I'm building this service against the AbleCommerce shopping cart software. The service (destination) classes at issue ...
0
votes
1answer
88 views

How do I map from a source property to the destination?

I swear I've done it before, but I can't seem to get it to work now. Basically I'm getting an EndUser containing a Site, and I want to map that Site to a SiteInfo object. Here's my map ...
2
votes
2answers
191 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
190 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
156 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
476 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 ...
4
votes
2answers
385 views

AutoMapper and flattening nested arrays

I'm trying to use AutoMapper to flatten multiple levels of arrays. Consider the following source classes: class X { public string A { get; set; } public Y[] B { get; set; } } class Y { ...
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
55 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
559 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
168 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
1answer
113 views

How to force Automapper to overwrite array property?

I am using Automapper in my project to map business entities to DTO. public class TransportStop { public Point[] Points { get; set; } } public class TransportStopDto { public PointDto[] ...
0
votes
0answers
128 views

Automapper Constructor Parameters

I've just started using this and immediately ran into a problem mapping a parameter to a a constructor parameter. I've tried every example I can find on SO but none seem to work and the documentation ...
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
531 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
193 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 ...

1 2