A convention-based object-to-object mapper and transformer for .NET

learn more… | top users | synonyms

2
votes
2answers
73 views

Violation of PRIMARY KEY constraint: Cannot insert duplicate key in object

When I want to persist a complex model, I get this error. I think I know where it comes from, but I don't know how to solve it. I'm importing a few feeds and create objects automatically, including ...
1
vote
2answers
25 views

AutoMapper, how to keep references between mapped objects?

I am using AutoMapper to convert a UI model to POCOs that I later serialize to XML using a DataContractSerializer in order to preserve the references between them. The problem comes that, when ...
0
votes
1answer
43 views

AutoMapper and EF entities - ignoring all relationships

I am using AutoMapper to map DTOs to entities. When creating the maps, I always end up ignoring the relationships of the entities, and that usually result in a long, long list. That is: ...
2
votes
0answers
30 views

Automapper Issue: Recursive Projection LinqToSql Stackoverflow Exception

Using the above LinqToSql entity classes and trying to map to like-named DTO objects throws a Stackoverflow Exception. I've read around and this appears to be a problem with the Child/Parent ...
1
vote
2answers
32 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 ...
1
vote
1answer
41 views

Replacing empty strings with nulls with AutoMapper

I am using AutoMapper to map DTOs to entities. Also, my WCF services are being consumed by SAP. The issue is that SAP sends me empty strings instead of nulls (that is, "" instead of null). So I ...
0
votes
0answers
17 views

Add a MappingExpression for already created Map

AutoMapper allows to customize the map through the IMappingExpression returned by the CreateMap method. Like this: Mapper.CreateMap<ClassA, ClassB>() .ForMember(dest => ...
1
vote
1answer
21 views

What expression is needed for mapping this property?

I am trying to map two objects that are mostly similar with AutoMapper but one member (AudioSummary) raises the following exception : The following property on EchoNestModel.AudioSummary cannot be ...
0
votes
2answers
41 views

How can I set default value to exceptions in automapper while mapping from string to int type property?

I am trying to map one object to another but I am getting a problem while mapping an empty string to type int or a non integer string to int, so what I want that if I such exceptions occur it must ...
0
votes
1answer
41 views

Automapper - Convert string property to SelectList?

I'm just starting to learn AutoMapper in an MVC project. I have a base entity "Attendee" with a string field for Gender (possible values of "M" or "F"). I already have a basic mapping created between ...
1
vote
1answer
44 views

Map List<> with Automapper?

I have two classes: public class CustomerDTO { public string Name {get;set;} public List<Order> Orders {get;set;} } public class OrderDTO { public string Name {get;set;} public string ...
6
votes
2answers
54 views

AutoFixture: how to CreateAnonymous from a System.Type

I need to create an object from AutoFixture using nothing more than a System.Type. However, there doesn't appear to be an overload of CreateAnonymous() that simply takes a type. They all expect a ...
0
votes
2answers
48 views

automapper showing error “Specified cast is not valid.”

i am getting error while mapping DataTable with the model here is my code if (file.ContentLength > 0) { var extension = Path.GetExtension(file.FileName); if ...
2
votes
2answers
52 views

Mapping domain model to view model via AutoMapper or not

I want to use view model for display insted of domain model. And I want to customise a property for display, how should I do this? And is it a good practice to use AutoMapper for display? Below is ...
0
votes
1answer
22 views

How to map from base type of object?

I have two types: class Source { public object Data { get; set; } } class Destination { public object Data { get; set; } } that I want to map between where in both Source and Destination the ...
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
91 views

Correct way to use AutoMapper in ASP.Net MVC

I'm trying to tart using ViewModels - but I'm having trouble with this POST not validating - the values in the model are shown in the Watch part below the code: ModelStats.IsValid = false My ...
0
votes
2answers
25 views

mapping complex object with automapper

How can I convert IEnumerable<Category> to IEnumerable<CategoryViewModel> with this definition public class Category { public Guid Id { get; set; } public string Name ...
1
vote
1answer
44 views

Unit Testing on Controller that uses AutoMapper

I am trying to unit test a UpdateUser Controller that uses AutoMapping. Here is the code for the controller UpdateUserController private readonly IUnitOfWork _unitOfWork; private readonly ...
0
votes
0answers
17 views

Does Automapper preserve mapped list item order?

I could not find information on List item mapping order in Automapper's documentation or unit tests. If I try to map a new List<int>() { 1, 2, 3, 4 } to another List<int>, can I be sure ...
1
vote
1answer
55 views

Automapper and ViewModels and Posting Updates back to database

I keep readin that you should use ViewModels (and AutoMapper) - so this is my initial steps into that. I'm just looking for some reassurance that I'm mapping my model to my viewmodel, and when posted ...
1
vote
1answer
28 views

QueryableExtensions for ValueInjecter

Does anything like QueryableExtensions for Automapper exist for ValueInjecter? For those unfamiliar with this functionality it allows for the automatic projection of properties to be performed for ...
1
vote
1answer
42 views

Nullable datetime to datetime converter automapper

I have a situation where my DTOs require DateTime properties but my POCOs use nullable datetimes. To avoid having to create ForMember mappings for every property with this condition I created an ...
0
votes
2answers
94 views

MVC Repository with Unit Of Work, Automapper and Generic Repository

I've been looking at a few blog posts to try and create an appropriate solution for the following requirements but I can't seem to piece them together. Hope fully someone can help. I've been using ...
0
votes
1answer
119 views

Saving Viewmodel data to the Database in ASP.NET MVC

I am new to ASP.net MVC and am using a viewmodel rather than viewbags to populate my dropdowns since I've seen most people recommend against them. I have a slick UI that does cascading dropdowns and ...
0
votes
1answer
49 views

Automapper Random Errors

2 months ago I have asked about this problem! and the problem still exists. I am not going to copy/paste the same problem here because I found out that the error is not for a specific Entity-DTO ...
1
vote
0answers
63 views

Automapper Projections and Enum > string converter

Having a problem using Automapper's Project().To method that does not show up when doing a simple Mapper.Map<>(). I have an enum that is mapped to a string, and a class containing that enum ...
1
vote
1answer
47 views

How To Mapping Entity When Editing it in ASP.Net MVC using AutoMapper

i have a view model like this: public class CityModel { public int Id { get; set; } [Required] public int ProvinceId { get; set; } [Required] public string Caption { get; set; } ...
1
vote
1answer
37 views

How to use AutoMapper to map a DataRow to an object in a WCF service?

I have a WCF service that calls a stored procedure and returns a DataTable. I would like to transform the DataRows to custom object before sending to the consumer but can't figure out how to do so. ...
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 ...
1
vote
3answers
122 views

The method 'Where' cannot follow the method 'Select' or is not supported

Why am I getting: The method 'Where' cannot follow the method 'Select' or is not supported. Try writing the query in terms of supported methods or call the 'AsEnumerable' or 'ToList' method ...
4
votes
1answer
150 views

AutoMapper Profiles and Unit Testing

I'm rolling over my AutoMappers from using one large AutoMapperConfiguration class to using actual profiles. Global now looks like so (forgive the Open/Close violation for now) Mapper.Initialize(x ...
2
votes
1answer
63 views

AutoMapper settings properties to null on destination object

I have something like this: public class DomainEntity { public string Name { get; set; } public string Street { get; set; } public IEnumerable<DomainOtherEntity> OtherEntities { ...
0
votes
1answer
54 views

How get AutoMapper to: ignore non mapped properties, include conventional mapping and work with QueryableExtensions

I've found two solution to ignore non mapped properties but one of them also ignore the conventional mappings, and the second doesn't work with QueryableExtensions to return an IQueryable (don't know ...
0
votes
1answer
40 views

automapper: skipping/ignoring nested types

I'm trying to create a map between a domain object and viewmodel to support a use case that feels quite common. The fact that I can't find a solution makes me think I'm approaching the problem ...
0
votes
1answer
76 views

Automapper map to IEnumerable from List<Expression<Func<T1, object>>>

I currently map map properites from an anonymous type with the code Mapper.CreateMap<T, CBoxItem>() .ForMember(m => m.Prop1, x => x.MapFrom(Prop1Source.Compile())); //followed by ...
1
vote
1answer
55 views

Automapper complex objects

I've begun implementing this; Automapper, mapping to a complex object but figured there must be a better way. So I created this; Mapper.CreateMap<StoreTransportWindow, CSVWindow>() ...
0
votes
1answer
77 views

C# AutoMapper exception when mapping nullable byte to enum

I'm using AutoMapper (http://automapper.org/) to automatically map one object to the other. Source object: public partial class SrcObject { public int Id { get; set; } ... public ...
0
votes
0answers
17 views

Using automapper to map collection

Consider these classes public class Product { public int ProductId {get; set;} public int Name {get; set;} public int ProductCategoryId {get;set;} } public class Prod { public int ProdId ...
0
votes
1answer
51 views

AutoMapper getting maps mixed up when running large number of tests?

I currently have a solution with about 1000 unit/integration tests using MSTest runner. The problem Im experiencing with AutoMapper is that when I have VS run all tests in the solution, I'll randomly ...
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
16 views

Mapping from a complex object and a list into a new list

I can figure out this mapping going from Source => DTO, but I'm having a terrible time going back the other way. I don't really know the terms to use for this, so I hope the code is clear The ...
0
votes
2answers
91 views

Entity Framework Can Not Save My Change

I'm using the following design: I'm using AutoMapper for the domain/DTO conversions (both ways), Entity Framework Code First, and SQL Server 2012. Each table has a field named RowVersion of type ...
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
2answers
102 views

Modify existing AutoMapper type map (for unit testing)

I use the AssertConfigurationIsValid method to unit test my mapping profile. To make it accept my mapping, I need to explicitly ignore unmapped destination properties. This pollutes my mapping code ...
0
votes
1answer
49 views

AutoMapper and Base Types

I have a collection of EntityDtos. Each EntityDto has a property called EntityType. Each of these EntityTypes correspond to a different subclass, something like this abstract class EntityBase { ...
0
votes
1answer
39 views

User mapper in ForMember in automapper

I wondering if it is possible to “sub map” mapped objects in ForMemeber. I have a mapping for class a to b configured. Then I have two new classes I need to map c and d, but the structure is different ...
1
vote
1answer
73 views

AutoMapper Writing Null On Target Field When Source Field Does Not Exist

I have the following objects: public class DomainStudent { public long Id { get; set; } public string AdvisorId { get; set; } } public class ApiStudent { public long Id { get; set; } ...
1
vote
0answers
82 views

Exception thrown when trying to map with automapper and castle windsor injection

I get the following error Missing type map configuration or unsupported mapping. Mapping types: RegistrationViewModel -> Member Here's my models public class Member { public int ID { get; ...

1 2 3 4 5 27