Tagged Questions
A convention-based object-object mapper.
78
votes
5answers
6k views
AutoMapper vs ValueInjecter [closed]
Everytime I'm looking for AutoMapper stuff on StackOverflow, I'm reading something about ValueInjecter.
Can somebody tell me the pros and cons between them (performance, features, API usage, ...
26
votes
3answers
3k views
How to map View Model back to Domain Model in a POST action?
Every article found in the Internet on using ViewModels and utilizing Automapper gives the guidelines of the "Controller -> View" direction mapping. You take a domain model along with all Select ...
24
votes
5answers
4k views
AutoMapper: “Ignore the rest”?
Is there a way to tell AutoMapper to ignore all of the properties except the ones which are mapped explicitly?
I have external DTO classes which are likely to change from the outside and I want to ...
19
votes
1answer
2k views
Automapper - how to map to constructor parameters instead of property setters
In cases where my destination setters are private, I might want to map to the object using the destination object's constructor. How would you do this using Automapper?
13
votes
3answers
849 views
multi-step registration process issues in asp.net mvc (splitted viewmodels, single model)
I have a multi-step registration process, backed by a single object in domain layer, which have validation rules defined on properties.
How Should I validate the domain object when the domain is ...
13
votes
5answers
1k views
Best practices concerning view model and model updates with a subset of the fields
By picking MVC for developing our new site, I find myself in the midst of "best practices" being developed around me in apparent real time. Two weeks ago, NerdDinner was my guide but with the ...
13
votes
5answers
2k views
Configuring Automapper in Bootstrapper violates Open-Closed Principle?
I am configuring Automapper in the Bootstrapper and I call the Bootstrap() in the Application_Start(), and I've been told that this is wrong because I have to modify my Bootstrapper class each time I ...
12
votes
3answers
3k views
How to Configure AutoMapper Once Per AppDomain
My current project with assemblies for the domain model, MVC web application, and unit tests. How can I set up the AutoMapper configuration so that all assemblies reference the same configuration?
I ...
11
votes
2answers
3k views
Automapper: Ignore on condition of
Is it possible to ignore mapping a member depending on the value of a source property?
For example if we have:
public class Car
{
public int Id { get; set; }
public string Code { get; set; }
}
...
10
votes
3answers
2k views
How to deep clone objects containing an IList property using AutoMapper
I am trying to deep clone the following class using AutoMapper:
public class MainData
{
public MainData()
{
Details = new List<Detail>();
}
public int Id { get; private ...
10
votes
3answers
527 views
Whats Automapper for?
What’s Automapper for? How will it help me with my domain and controller layer (asp.net mvc)
9
votes
4answers
495 views
Where to place AutoMapper.CreateMaps?
I'm using automapper in an asp.net mvc application. I was told that I should move the AutoMapper.CreateMap elsewhere as they have alot of overhead. I'm not too sure how to design my application to put ...
9
votes
4answers
649 views
Design pattern for mapping DTOs containing child collections back to domain models
For the longest time I've been using AutoMapper to both map my domain models to my DTOs, as well as mapping my DTO back to domain models.
I'm using EF4 for my ORM, and this mapping gets really ugly ...
9
votes
3answers
1k 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 ...
9
votes
6answers
10k views
Entity Framework + AutoMapper ( Entity to DTO and DTO to Entity )
I've got some problems using EF with AutoMapper. =/
for example :
I've got 2 related entities ( Customers and Orders )
and they're DTO classes :
class CustomerDTO
{
public string CustomerID ...
8
votes
3answers
409 views
How to keep validation DRY?
Using this approach to view models in MVC: http://www.lostechies.com/blogs/jimmy_bogard/archive/2009/06/29/how-we-do-mvc-view-models.aspx
leaves an unanswered question in my mind. So it is about time ...
8
votes
3answers
928 views
8
votes
1answer
599 views
AutoMapper Exclude Fields
I'm trying to map one object to another but the object is quite complex and so during dev I'd like the ability to either exclude a bunch of fields and get to them one by one or to be able to specify ...
8
votes
3answers
1k views
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 -> B, and to add some properties from C so that B become a kind of flat composite of A + C.
...
8
votes
5answers
819 views
Reusing validation attributes in custom ViewModels
When I started using xVal for client-side validation, I was only implementing action methods which used domain model objects as a viewmodel or embedded instances of those objects in the viewmodel.
...
8
votes
3answers
3k views
C# automapper nested collections
I have a simple model like this one:
public class Order{
public int Id { get; set; }
... ...
public IList<OrderLine> OrderLines { get; set; }
}
public class OrderLine{
public int ...
8
votes
3answers
947 views
AutoMapper flattens Domain Models but does it do the opposite? If not, what does?
I've been reading up on AutoMapper because of a response to one of my earlier questions here. It says that AutoMapper flattens complex domain models, but I need something that does the opposite. I ...
8
votes
5answers
3k views
Object to object mapper
I've used plenty of ORM tools in the past, NHibernate, .netTiers, LLBLGen and more and they always do a pretty good job of mapping data from a database to objects in code.
What I'm looking for ...
7
votes
2answers
417 views
Alternatives to AutoMapper
What are the different alternative frameworks available for object to object mapping in .NET apart from AutoMapper
Currently we're planning to use AutoMapper, but before finalizing this framework, we ...
7
votes
6answers
283 views
Copying Models Between Layers
When traversing layers it is very tedious to perform right->left assignments as a way to populate the models. For example:
employeeViewModel.FirstName = employeeModel.FirstName;
...
7
votes
2answers
616 views
Can automapper map a foreign key to an object using a repository?
I'm trying out Entity Framework Code first CTP4. Suppose I have:
public class Parent
{
public int Id { get; set; }
public string Name { get; set; }
}
public class Child
{
public int Id ...
7
votes
4answers
765 views
How to get data for a dropdownlist into viewmodel when using AutoMapper/AutoMapViewResult
After reading ASP.NET MVC 2 in Action and watching Jimmy Bogard's presentation from MvcConf (both highly recommended!), I began to implement some of their ideas.
One of the cool things they do, is ...
7
votes
2answers
2k views
Automapper : mapping issue with inheritance and abstract base class on collections with Entity Framework 4 Proxy Pocos
I am having an issue using AutoMapper (which is an excellent technology) to map a business object to a DTO where I have inheritance off of an abstract base class within a collection.
Here are my ...
7
votes
3answers
2k views
AutoMapper and inheritance - How to Map?
Have this scenario:
Public class Base { public string Name; }
Public Class ClassA :Base { public int32 Number; }
Public Class ClassB :Base { Public string Description;}
Public Class DTO {
...
7
votes
3answers
673 views
How do I get rid of the SecurityException error when trying to use Automapper in ASP.NET MVC?
I'm developing an ASP.NET MVC application with NHibernate and I'm trying to use Automapper to hide the Domain objects from the DTO objects sent to the view:
ClassLibrary with my Domain (for ...
7
votes
1answer
2k views
Does AutoMapper support Linq?
I am very interested in Linq to SQL with Lazy load feature. And in my project I used AutoMapper to map DB Model to Domain Model (from DB_RoleInfo to DO_RoleInfo). In my repository code as below:
...
7
votes
3answers
484 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 ...
6
votes
1answer
110 views
What is wrong with two-way mapping?
I've been using AutoMapper for a few months now with success but now I've hit a bit of a stumbling block. What I need (or think I need) is for 2 way mapping. This is for when I load an item from the ...
6
votes
1answer
211 views
Extra iterations in a foreach in an AutoMapper map
For some reason, a loop that I use in an AutoMapper map definition is iterating more than it should.
The map definition:
Mapper.CreateMap<AdminGameEditModel, Game>()
.BeforeMap((s, ...
6
votes
3answers
676 views
How do I map entities with lazy-loaded properties (without causing them to load)?
I'm using EF 4.1 and code-first in an MVC project, and AutoMapper to map entities to view models.
Prior to using code-first I was able to exclude navigation properties in order to prevent anything ...
6
votes
1answer
395 views
Can Automapper map from a Dictionary of properties to a flat destination?
Source contains a property bag in a Dictionary. Can Automapper map the entries in the Dictionary to individual properties of the Destination based upon matching the dictionary keys with the names of ...
6
votes
2answers
408 views
Reference implementation of ASP.NET MVC using ViewModels, EditModels, and AutoMapper
A simple question: is there a good reference implementation of using ASP.NET MVC with an ORM, ViewModels, and EditModels (ideally using Automapper)?
I understand the benefits of using these ...
6
votes
1answer
476 views
DTO shape: flat, complex/nested, or a mixture of both
I have an MVC2 n-tier application (DAL, Domain, Service, MVC web) using a DDD approach (Domain Driven Design), having a Domain Model with repositories. My service layer uses a Request/Response ...
6
votes
2answers
496 views
AutoMapper bidirectional mapping
If I want to do bi-directional mapping, do I need to create two mapping?
Mapper.CreateMap<A, B>() and Mapper.CreateMap<B, A>()?
6
votes
2answers
353 views
AutoMapper and is*Specified properties
I have a bunch of XSD.exe-generated data contract classes which for all optional elements have a pair of C# properties like
int Amount {get; set;}
bool isAmountSpecified {get; set;}
On the other ...
6
votes
2answers
361 views
Mapping all properties of 'X' type with AutoMapper
I've just started using AutoMapper and so far found it very straight-forward and time-saving.
Just one thing I'm not sure about - how do I map all the properties of a given type in the same way?
Can ...
6
votes
2answers
775 views
Usage of Automapper when property names are different
We are using AutoMapper from Codeplex and for me the destination object has all the properties ending with 'Field', ie cityField and the source object has just city.
I can use the below code to ...
6
votes
1answer
5k views
Getting an exception with AutoMapper
I'm unit testing a method which uses automapper to map a class from my domain to a linq to sql class. Roughly, the classes and mapping are below (The SupplierEligibilityAllocated is a L2S auto ...
6
votes
4answers
806 views
How do you ignore/persist values in MVC when your view-model doesn't have as many fields as your domain model?
I have a site where I'm using fluentNhibernate and Asp.net MVC. I have an Edit view that allows user to edit 8 of the 10 properties for that record (object). When you submit the form and the Model ...
5
votes
1answer
76 views
Can Automapper be used to bind class instances to Winforms, and if so, how?
I have a number of Data Transfer Objects (DTO's) that map onto data structures in a binary file. Some of the fields in these objects map to enums, like this one:
public enum DataChecksumExistence
{
...
5
votes
1answer
90 views
How to make AutoMapper create an instance of class
I have the following source type:
public class Source
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Address1 { get; set; }
public string ...
5
votes
1answer
189 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?
5
votes
1answer
458 views
ValueInjecter and DataTable
I was trying to figure out ValueInjecter so i can use it in our home-grown little ORM. Since i should support DataRow and DataTable mapping, i am trying to implement mappers for this types. And ...
5
votes
2answers
159 views
AutoMapper Mapping Depth
Is there any way to set the "depth" of mapping on one entity while mapping to dto?
Thanks!
5
votes
2answers
1k views
AutoMapper: How to parse an Int from a String and possible to creating rules based on data type?
I have two models for my form, a ViewModel going to it, and a ControlModel coming from it. The ControlModel has all the same field names and hierarchy, but all of the fields are a string data type.
...