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

learn more… | top users | synonyms

0
votes
0answers
53 views

AutoMapper configuration without generics and expressions

I have two classes that are built using Reflection.Emit at runtime and I want to Map them using Auto mapper. My mapping configuration code looks like this. ...
1
vote
1answer
78 views

Using a custom factory to create destination type with Automapper

I have CustomerDto and CustomerDomainModel. I want Automapper to use the DataBindingFactory mentioned here when constructing a CustomerDomainModel object. I have had a look at ConstructUsing and ...
1
vote
1answer
106 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
79 views

AutoMapper and convert a datetime to string

I can't get my head round the following issue. I have a feeling it is a limitation of LINQ and expression trees, but not sure how to accept the lambda body. Can I achieve this WITHOUT creating a ...
0
votes
2answers
104 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[] ...
2
votes
1answer
167 views

AutoMapper and “UseDestinationValue” results in “Unmapped members were found”

Hello fellow programmers, calling out to the masters here... I am currently using Entity Framework and ASP.NET MVC 4 I am having an issue trying to map my EditProductViewModel class back to my ...
0
votes
1answer
49 views

automapper dto to viewmodel

How can I map my dto to my ViewModel, knowing the following : My dto: public class SomeClass { public int myProperty{get; set;} } my viewModel: public class MyViewModel { public SomeClass ...
1
vote
1answer
82 views

Using AutoMapper to map unknown types

I'm using AutoMapper to copy the properties of one object to another: This is my code: // Get type and create first object Type itemType = Type.GetType(itemTypeName); var item = ...
0
votes
0answers
29 views

How create distinct automapping?

Mapper.CreateMap<Product, SelectListOptionItem>() .ForMember(dest => dest.Text, opt => opt.MapFrom(src => src.Description)) .ForMember(dest => dest.Value, opt ...
1
vote
3answers
126 views

Serializing a List of Interfaces using the DataContractSerializer

I have a class and there are some nested classes within it. I serialize it and send it to the wcf service using a method with no problems. Here's the class; public class ComputerDTO { ...
1
vote
1answer
73 views

Cast Model to ViewModel

this is my Category model : public class Category :IAggregateRoot { public Guid Id { get; set; } public string Name { get; set; } } and this is my CategoryViewModel : ...
1
vote
1answer
154 views

dependency inject in to an automapper resolver

I am working with AutoMapper in my c# mvc4 application. I use it to map my DTO objects to my view models. I have created a custom resolver to resolve a particular property of the DTO to the Model ...
0
votes
0answers
71 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
92 views

AutoMapper .ForMember method compilation error. Invalid overload

I am trying to map using Automapper Here is my current mapping: Mapper.CreateMap(Of NameAddress, PersonalDetails)() _ .ForMember(Function(dest) dest.Forenames, Function(opt) ...
0
votes
1answer
78 views

AutoMapper exception

When I run the line of code Mapper.Map(Account, User); I get a "Missing type map configuration or unsupported mapping" exception. I'd also like to note that the line Mapper.Map(Account); does not ...
1
vote
1answer
43 views

Mapping a single child

The mapping below works, but I was wondering if it can be done with less configuration. I've tried playing around with ForAllMembers and ForSourceMember but I haven't found anything that works so far. ...
1
vote
2answers
115 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 ...
4
votes
2answers
237 views

AutoMapper Project().To() and sorting a child collection

I have an object graph that I'm loading from a database using EF CodeFirst and AutoMapper into DTOs:- public class Foo { public int Id { get; set; } public virtual ICollection<Bar> Bars { ...
0
votes
1answer
68 views

Saving Fluent/NHibernate projections

I'm using the Fluent automapper to map my classes and I currently have a base class containing summary information for a person and a derived class containing their full information: interface ...
0
votes
0answers
101 views

Using Automapper to map dynamic types and missing explicitly mapped properties from source object

Trying to use AutoMapper to map a dynamic entity to a known domain Type based on a required attribute in the input called EntityType. eg:Entity="DomainEntity1" Mapper.CreateMap< dynamic, ...
1
vote
1answer
95 views

Must resolve to top-level member

I tried the following map: CreateMap<ThemeNewModel, CreateThemeOrder.ThemeModel>() .ForMember(d => d.Subject.Id, o => o.MapFrom(s => s.Subject)); Both Subject.Id and Subject are ...
0
votes
1answer
243 views

Converting an entity / model back to DataTable

For legacy reasons, I am having to call ASMX web services which give me a DataTable instead of an entity, and then in turn pass back a data table to the web service. I'm using the term entity here, ...
0
votes
0answers
100 views

How to use automapper to set values of only some fields of one object to correspondents fields of another EXISTING object?

For example I have some type: public class MyType { public string Prop1 {get; set;} public string Prop2 {get; set;} public string Prop3 {get; set;} public string Prop4 {get; set;} } ...
0
votes
1answer
82 views

Data Mapping an Adjacency List Model with AutoMapper [duplicate]

So have have an model object TreeNode: Public Class TreeNode{ Public int NodeId {get;set;} Public String Name {get;set;} Public int ParentId {get;set;} Public TreeNode Parent {get;set;} ...
1
vote
1answer
36 views

How to specify mapping rule when names of properties differ

I am a newbie to Automapper framework. I have a domain class and a DTO class like: public class Employee { public long Id {get;set;} public string Name {get;set;} public string Phone ...
0
votes
1answer
110 views

LINQ and AutoMapper

I'm wondering if there is anything I can do to get this working as expected. This works fine in my code: var roles = _securityContext.Set<Role>(); var roleList = new ...
4
votes
2answers
303 views

AutoMapper - Very strange behaviour when mapping child lists

This is most certainly a peculiar issue, and after finding nobody out there with the same issue, I hope I can find someone who actually knows what the problem is. I've got, say: public class ...
0
votes
2answers
219 views

Converting string to bool within DataReader with Automapper

This seems like a very simple question, so hopefully this will be easy. I have a custom string to bool map in Automapper that simply converts "Y" and "N" to true and false. It doesn't get much ...
0
votes
0answers
80 views

Automapper issues with mapping EntityFramework Collections

I have the following classes: class Source { public ICollection<Child> Children{ get;set;} } class _Source:Source { public ICollection<Child> Children {get;set;} } class _Child ...
0
votes
0answers
35 views

Inheritance mapping not working in AutoMapper

According to the docs I shouldbe able to do: Mapper.CreateMap<LocalisedEntity, AbstractView<Guid>>() .Include<Attribute, AttributeView>() .Include<DataItem, ...
2
votes
0answers
170 views

Dynamically convert String Dictionary into Strong Typed Class Using AutoMapper

I have been searching for a couple of days, and have not found the answer yet. The case is, I want to fill class properties from formatted string. example : Class Name : Country Property Name : ...
1
vote
0answers
177 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 { ...
0
votes
1answer
83 views

How to get EF POCOs from System.Data.Entities.DynamicProxies

My question is the same as this one However, I don't really see a solution there. Lets say I have a simple model with two POCOs, Country and State. public class Country { public string Code { ...
0
votes
0answers
49 views

AutoMapper Let Instance Variable

Apologies if this has been asked before, I'm not sure of the specific terms to ask. A short example: public class SignOffDetails { public int fUserID {get; set;} public DateTime SignedAt ...
0
votes
1answer
97 views

Telerik Openaccess ORM Update Object and Automapper

I am trying to update an object using telerik openaccess orm and automapper, it works for adding the object to scope but not update. I saw on their site someone having same issue, but the answer ...
3
votes
1answer
282 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
163 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
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
3answers
2k views

Automapper missing type map configuration or unsupported mapping?

Entity Model public partial class Categoies { public Categoies() { this.Posts = new HashSet<Posts>(); } public int Id { get; set; } public string Name { get; set; } ...
1
vote
1answer
156 views

How to convert from Expression<Func<DomainType>>predicate to Expression<Func<DTOtype>predicate

Some background: I have in my application multiple layers, two of which are a domain layer and an infrastructure layer which serves as my DAL. In the domain layer, I have implemented a generic ...
1
vote
1answer
80 views

Automapper mapping type with subtype

I've got a case in which I need to map something like this: public class Event { string Name {get;set;} int EventType {get;set;} SubType Sub {get;set;} } The problem is that the way ...
1
vote
0answers
92 views

AutoMapper how to flatten nested lists

I am trying to map out some nested lists into a list of flattened structures using automapper. Currently I am able to map the correct number of credits with names but I can not get the role and role ...
5
votes
2answers
100 views

AutoMapper MapFrom works for calculations?

I was told, that for 1 property<=>1 property mapping I should use MapFrom, but when the destination property is somehow calculated or modified, then I should use ResolveUsing. Still when I use this ...
1
vote
0answers
160 views

AutoMapper mapping null-able value types

AutoMapper doesn't seem to map null nullable values. It will only map the properties if the nullable value. How do I tell AutoMapper to always map null values (of any kind) from the source to the ...
3
votes
1answer
394 views

Automapper DynamicMap failing to map Lists of anonymous types

I have the following snippet of code. var files = query.ToList(); var testFile = Mapper.DynamicMap<EftFileDto>(files.First()); var filesDto = ...
0
votes
2answers
136 views

how to mock AutoMapper in ASP.NET MVC Unit Tests

I've used AutoMapper in my controller for mapping my Model objects to my ViewModel objects. A IMappingEngine object is injected in my controllers by Unity and the Mapping configuration is done in the ...
0
votes
1answer
95 views

What is the best way to map from/to a Dictionary with objects properties based on an interface as contract?

I'm working on a very dynamic Silverlight Application where viewmodels are dynamic models. The WCF service returns a Response object that contains enough information (TableName property and an ...
-1
votes
2answers
89 views

MVC ViewModel approaches and mapping. Best approach

I've been looking at the different approaches to solving the mass assignment issues with MVC as well as doing things the right way. So far, the 2 approaches which I think are the best are below: (I ...
1
vote
1answer
258 views

Autofac 3 and Automapper

Does anyone know of a comprehensive guide to setting up Automapper with Autofac. I'm new to both but I have played around with the static Mapper class however I want to be able to mock and inject ...
0
votes
0answers
44 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 ...

1 2 3 4 5 26