1
vote
2answers
29 views

AutoMapper and interface typed collections

I'm new to AutoMapper. Sorry if this is too simple. This is my sample domain: I have a Basket. It contains a list of Food. Food is either Banana or Pickle. I have DTOs that mirror each class in the ...
2
votes
1answer
29 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
0answers
72 views

Mapping between presentation model and domain model 1:n

I need mapping between presentation and domain model for C#. I know that there are several mapping library, but it seems to me that none of them achieve the following requirement: 1:n mapping: One ...
0
votes
1answer
45 views

using Automapper

I have a client class that I need to map to a less complexe class of clientViewModel, and here are the two classes: public class client { public int clientRef{get;set;} public string Title{get;set;} ...
0
votes
1answer
154 views

Can i map multiple objects to a destination object using automapper

UserAccount objUserAccount=null; AutoMapper.Mapper.CreateMap<AccountBO, UserAccount>(); objUserAccount = AutoMapper.Mapper.Map<AccountBO, UserAccount>(lstAcc[0]); Up to this point it ...
0
votes
1answer
843 views

AutoMapper flattening of nested mappings asks for a custom resolver

I'm somewhat new to AutoMapper and wanted to map a POCO-ish object to a perhaps more complex DTO, the latter tries to be a representation of a Google Books API's Volume resource: Book.cs public ...
2
votes
1answer
397 views

AutoMapper complex nested mappings

I've read this example on AutoMapper's GirHub, but the example assumes there'll only be one way to map InnerSource, ever: Mapper.CreateMap<OuterSource, OuterDest>(); ...
5
votes
1answer
336 views

Simple Injector registering IMappingEngine (AutoMapper)

I used Autofac before but now I want give SimpleInjector a try. My problem is, on calling the mappingEngine within my method I get the following error: Missing type map configuration or ...
1
vote
1answer
901 views

Any way to improve Automapper performance?

I am a big fan of Autompper. I am now using it in many projects for mapping entities between differents domains like from wcf service model to business model. After some load tests (with VS Profiler) ...
0
votes
1answer
105 views

Object to Object mapping framework

I was interested in any framework/patterns to leverage to generate an object to object Mapping tool. My goal is to use EF to hydrate the object, and I would like to use a custom class which would ...
1
vote
1answer
305 views

c# - AutoMapper: how to copy fields from 2 different sources into 1 destination

I have a flat file with a bunch of records, let's say it's a sequence of 2 record types --- Record1: ID;NAME;SURNAME --- Record2: AGE;SEX; Let's call R1 the class representing Record1 and R2 the ...
1
vote
2answers
557 views

AutoMapper Map single list on source object into two lists on destination object

I'm attempting to use AutoMapper to map from a Domain-object that contains a list of objects, where I have a boolean property, that I want to use a the property that AutoMapper uses to split that list ...
2
votes
2answers
432 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 ...
0
votes
0answers
59 views

NHibernate Mapping classes for cloning, Need to zero the subclass ID's

first time on a forum and I am new to NHibernate (2 Days now) so please be patient with me. The task, to Clone the OneHundredCertificate with all sub classes. The Problem, As you can see from the ...
1
vote
0answers
364 views

Automapper - Map array of objects to one single object

I would like map array of objects to one single object. For example: public class ArrayData { //name of property in class MyObject in upper under score casing public string PropName{get;set;} ...
0
votes
1answer
95 views

Automapper mapping an object with HAS-A relationship

Holla, I have an data access object as follows: class Foo : IStorable { string name; int age; .. many more } I have another object like this: class FooViewModel { Foo data; Bar ...
1
vote
1answer
85 views

Object Mapper that includes Member Fields

Is there any Object-Object mapper that will support mapping to and from public member variables in addition to properties? I would like to use a mapping solution, and unfortunately I do not control ...
3
votes
1answer
334 views

Automapper complex mapping

How can I map the following: public abstract class PersonBase { public Address Address { get; set; } } public class Address { public string AddressHome { get; set; } public int ...
0
votes
1answer
165 views

Asp .NET MVC. Generate mapping code at design time to map view model to domain object

I am working on a .net MVC project team in which we find ourselves writing pages of mapping code to map view models to domain objects and domain objects to DTOs (we consume java web services) and vice ...
3
votes
2answers
925 views

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 a collection of blogposts: public ...
1
vote
0answers
132 views

Mapping tool (like Automapper) for Matlab

I've been enjoying the power of working with .NET types in Matlab using the Matlab .NET Interface. I'm currently attempting a set of Matlab wrappers to expose a .NET API (wrapping to make the API ...
1
vote
1answer
889 views

Automapper DTO - Flatten & Unflatten

There are lots of tutorials for flattening domain models into DTO using AutoMapper. I am using Entity framework and I want to flatten my Domain models into DTO to send across my service which is ...
0
votes
2answers
390 views

How to use Ignore globally in AutoMapper?

Here is how it looks like right now. DestinationA and DestinationB are derived from some DestinationBase class. And I need to ignore some common properties for all these derived class. Is there anyway ...
1
vote
2answers
396 views

Non standard inheritance mapping with AutoMapper

I have "table inheritance" in my DB (where descendants reference base with foreign key) and use Linq To Sql as my DAL: [Table] class Document { [Column]public int ID { get; set; } ...
1
vote
1answer
275 views

Automapper vs mapping at runtime via config file and reflection

I am new to this topic and I would like to know your opinion what I should do or how I can solve the following: I am developing a C# web service client which retrieves data from a database behind the ...
2
votes
2answers
2k views

AutoMapper: map DTO back to domain object with child objects

Let's say I have two objects I'd like to map: // Domain objects public class MyDomainObject { public string SimpleText { get; set; } public int SimpleNumber { get; set; } public ...
0
votes
1answer
309 views

How to configure AutoMapper to flatten a 1:n relation?

Consider two entity classes CD and Track: public class CD { public long Id {get; set;} public string Name {get; set;} public IList<Track> Tracks {get; set;} } public class Track { ...
6
votes
1answer
417 views

Is there something like AutoMapper for Scala?

I have been looking for some scala fluent API for mapping object-object, similar to AutoMapper. Are there such tools in Scala?
3
votes
3answers
334 views

AutoMapper Data Filling

Would it be possible to use AutoMapper in order to fill in an object with details from another object? For example (assuming previous configuration): var foo = new Foo { PropA = "", PropB = "Foo" }; ...
0
votes
1answer
617 views

AutoMapper mapping int[] or List<int> from ViewModel to a List<Type> in Domain Model

I'm new to AutoMapper and I've been reading and reading questions around here but I'm not quite able to figure out what looks like a very trivial question. First my classes, then the question(s): ...
2
votes
1answer
327 views

How to map a viewModel to a hierarchy model with arrays with AutoMapper?

A deep model is code-generated with lots of arrays (think WCF proxy genererated code based on a wsdl) that needs to be filled with a flattened viewmodel. There are no naming conventions between the 2 ...
3
votes
1answer
442 views

Mapping to CSLA objects using Automapper

I am trying to map a DTO object to a CSLA.NET (see: http://www.lhotka.net/cslanet/) object. For the sake of this question I am using the sample application that Lhotka provides with his framework. ...
0
votes
1answer
275 views

AutoMapper's Ignore() not working?

I'm trying to ignore a property from my type when performing mapping using AutoMapper. I define mapping this way: Mapper.CreateMap<TypeA, TypeA>().ForMember(dest => dest.Id, opt => ...
0
votes
0answers
210 views

mapping dynamic viewmodel excluding some fields [duplicate]

Possible Duplicate: What is the best way to map two objects of the same type excluding some fields? Hi guys, in my asp.net MVC2 I am using a view-model to pass back a domain object to my ...
0
votes
1answer
317 views

Where to set up AutoMapper to convert asmx proxy objects to domain objects?

I am calling a .asmx web service that I have added to a project as a Web Reference. Any objects that come back from the webservice are in the namespace of the webservice. I would like to use ...
1
vote
1answer
374 views

Automapper Set Decimals to all be 2 decimals

I want to use AutoMapper to link up two of my objects. It is working well but now I want to format my decimal items to all round to 2 decimals. This is what I have. What am I doing wrong? ...
0
votes
2answers
247 views

exception handling design

In my current project there are some components / libs which are designed as adapters. For example one adapter encapsulates IO access to file system. In the actual exception handling design the ...
0
votes
1answer
118 views

Does the responsibilities of factory and mapper overlap?

I am a bit confused as to what responsibilities should a mapper hold. Could you please provide me with more in-depth description of mutual interdependence between object factory and object mapper. ...
3
votes
2answers
581 views

ViewModel objects to EF model entities conversion where?

I currently have a repository based on Entity Framework v4 entities (CRUD and GET operations implemented). I'm in the process of creating the corresponding View Models for these entities. Where should ...
5
votes
1answer
796 views

AutoMapper: Why is UseValue only executed once

Why is UseValue only executed once? I need to call the TeamRepository for each request. How can I achieve this? Mapping from TeamEmployee to TeamEmployeeInput: CreateMap<TeamEmployee, ...
0
votes
1answer
184 views

Is there a way to do filtering with AutoMapper?

Good evening! I'm currently looking for a way to "filter" an object before sending it to my repository ; that is to say, keeping some properties from the original instance while ignoring or replacing ...
1
vote
1answer
299 views

Mapping Vertical Legacy Table with Fluent NHibernate

I am trying to map the following table setup, of which I have no control over (sorry for the text tables, I can't post images yet): **METADATA** METADATA_ID NUMBER(10,0) METADATA_DICT_ID ...
1
vote
1answer
441 views

What are the advantages of using automapper?

My question might be silly, but I'm pretty sure I miss a very important part of the issue. I have to do some object to object mapping (between domain classes used in C# project and classes which are ...
2
votes
1answer
727 views

How to map poco to JSON using Automapper

In my MVC 2 application I have a typical method that calls a web service, builds a JSON data object and returns it to the view. Everything works fine, but I was wondering if there is a way to do the ...
1
vote
0answers
445 views

Use Automapper for mapping big domain models to database objects

I would like to use Automapper to map my model objects to database objects. Let say database object is over 30 fields and I want map 10 out of 20 properties from my model. To make it more complex I ...
21
votes
3answers
2k views

Automapper for Java [closed]

Is there Java equivalent of .Net's Automapper?
15
votes
3answers
5k views

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 having trouble configuring the map so that it works, and I'm beginning to wonder if AutoMapper ...
0
votes
1answer
3k views

How to map null values with AutoMapper for an specific mapping?

I found this solution AutoMapper - setting destination string to null actually makes it string.Empty but It uses the Initialize method so all the mappings behavior would change along the app : O And ...
0
votes
1answer
238 views

How to map single object of type x to array of object of type y using automapper

Mapper.CreateMap<A, B>() .ForMember(dest => dest.defs, opt => opt.MapFrom(origin => origin.abc)); where defs is array of Def (Def[]) how to map?
11
votes
3answers
1k views

Why does AutoMapper have an IValueFormatter when it has a seemingly much more powerful ValueResolver?

It looks like an IValueFormatter takes a value of type object and returns a value of type string, while a ValueResolver<TSource, TDestination> takes a value of any type and returns a value of ...

1 2