0
votes
3answers
43 views

Is it good to use AutoMapper? [closed]

is it a good practice to use AutoMapper for creating ViewModels in MVC4? Are big MVC projects using AutoMapper or is there a better way? Are there any disadvantages when using AutoMapper? If I have ...
0
votes
1answer
66 views

Mapping of entity and model in Asp.net MVC 4

I am mapping the following Entity and Model using NopCommerce 3.0 Entity public partial class Package : BaseEntity { public int ProductID { get; set; } public int Quantity { get; ...
1
vote
1answer
72 views

Automapper - Error Updating Nested Child Collection

I have an MVC 4 sample application using code first (POCO), EF, ViewModels and AutoMapper. I have created a controller where parent and corresponding child entities are on the same view (entity with ...
2
votes
2answers
191 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 ...
2
votes
2answers
134 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 ...
1
vote
1answer
71 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; } ...
0
votes
0answers
25 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 ...
0
votes
0answers
39 views

generate a route to mvc controller action in automapper valueresolver

I am working with automapper and have a value resolver. Within the resolver I would like to create a link to a mvc route, prefably using T4MVC or any other means. The result from my controller is the ...
0
votes
1answer
65 views

AutoMapper not working **Probably failing for navigation properties**

I have two classes: Class - Country >> ID, Name, List Class - City >> ID, Name, CountryID, Country I have CountryViewModel and CityViewModel classes identical to the above classes. I have ...
1
vote
1answer
47 views

Is there anything wrong with creating AutoMappper mappings in the view model static constructor?

Well? For example, I often do this: public class PersonEditModel: MappedViewModel<Person> { static PersonEditModel() { Mapper.CreateMap<Person, ...
1
vote
1answer
213 views

Automapper resolveusing not returning nulls

I'm working on an MVC 4 project and trying to convert a value in a KeyValue list to a nullable DateTime. I have used the following line in the mapper (I've not included the other properties as there ...
0
votes
1answer
120 views

How do I use AutoMapper to map Foreign Key Values?

I'm currently using AutoMapper on an MVC Project running Code-First Entity Framework. Is it possible to Map Foreign Key values within AutoMapper? For example, I've stripped apart a piece of my Model ...
2
votes
0answers
82 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: ...
0
votes
1answer
246 views

ModelState.IsValid is always false for RegularExpression ValidationAttribute in MVC 4

In my class, I have a property for a file attachment like so... public class Certificate { [Required] // TODO: Wow looks like there's a problem with using regex in MVC 4, this does not work! ...
0
votes
1answer
65 views

Mapping with self reference class

I am trying to map the below Employee domain object to EmployeeViewModel using automapper. I am able to map properties like, Id, FirstName, LastName. But unable to map the Subordinates property. ...
0
votes
0answers
56 views

Map nested IList items with AutoMapper?

Assume we have the following dto : public class AllRolesModels { public List<PermissionCategoryModel> PermissionCategories { get; set; } public List<RoleModel> ...
4
votes
3answers
190 views

Inconsistent behavior in Automapper

Very strange thing happened in my project, i have a pretty simple CLR objects, First one is the Model other is ViewModel, after i compile the project i run my WebApi ASP.NET project, with the required ...
1
vote
1answer
236 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 ...
1
vote
1answer
179 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
2answers
158 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 ...
1
vote
1answer
90 views

AutoMapper.Reset() is needed after an update

I'm using AutoMapper in an MVC app. In GET I need to show a list of object and map them like that: Mapper.CreateMap<Word, WordViewModel>(); Mapper.Map<IList<Word>, ...
0
votes
0answers
114 views

How can I use Automapper to map all zero int values to null values for nullable int targets?

I use int? for all my required 'FK' properties in ViewModels. This gives me an easy way of specifying on a Create view model that a value is nullable and must be assigned a value to satisfy the ...
0
votes
2answers
412 views

Domain object to ViewModel & vice versa using Automapper

I'm developing a new MVC site for my company & kind of confused as how to create mapping from Domain/POCO objects to ViewModel classes [contains validation] & vice versa. Here's an sample ...
0
votes
1answer
410 views

AutoMapper UseValue, ResolveUsing or MapFrom reusing value from previous call. Is it caching or something?

I have a situation where starting from the 2nd call and subsequent ones (Ajax GET calls), AutoMapper is reusing the previous value (the value from the 1st call that comes from a click in an action ...
5
votes
2answers
189 views

Where can I initialize AutoMapper mappings in an Orchard module?

I am busy developing my first non-example Orchard module. It is a handful of controllers and views, with custom (EF) data access, and is largely independent of Orchard content types and parts. ...
1
vote
1answer
121 views

Accessing Request in Automapper Custom Resolver

I am working on an ASP.NET Web API project. I use Auto-mapper for mapping from my domain objects to DTOs How do pass in a request parameters into a Custom ValueResolver ? I saw a couple of similar ...
0
votes
1answer
105 views

asp.net c# Automap a class from within that class

To best describe what I want to happen, i'll show what i'm doing, as to me it makes sense that this would work ... public class foo() { public foo() { MyContext db = new MyContext(); ...
0
votes
1answer
33 views

AutoMapper - Mapping With Different Property Numbers

I am mapping between two models, one contains an extra property (and a method) than the other. I have foo, and bar. Bar has an extra property (ExProp which is a IEnumerable), with a method used to ...
1
vote
0answers
200 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
2answers
138 views

Getting classes from an assembly outside of web project

I am using ASP.NET MVC 4, C# and AutoMapper. In my global.asax.cs I am trying to register my mappings from another project (a C# project referenced in my web app). In this other project I have my ...
1
vote
0answers
647 views

ASP.NET MVC4 AutoMapper: Loses mapping when reach a Controller

I have a strange situation that I cannot figure out. I have a simple ASP.NET MVC4 application and am using AutoMapper to move data between ViewModel and Entity (DB) objects. The issue that I am ...
0
votes
3answers
420 views

Automapper asking for MVC3 reference in a MVC4 app with MvcExtensions

I am using ASP.NET MVC 4 RC and the latest version of MvcExtensions and MvcExtensions.Autofac. I don't know if MVC 4 works differently to MVC 3? The code below is how I used it in my MVC 3 ...