0
votes
0answers
66 views

AutoMapper: Mapping Flattened View Models Back To Domain Models

Given the following Domain Model and View Model, how would I get the mapping to work going from the View Model --> Domain Model? Domain Model: public class Transaction { public decimal ...
1
vote
2answers
106 views

Should AutoMapper also be used as a Re-Shape mapping tool

I know AutoMapper is just to map properties between 2 objects. Automapper is not for reshaping data this must be programmed in my opinion. I have a PeriodDTO.IEnumerable<Period> which needs to ...
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 ...
0
votes
3answers
396 views

How to use Automapper to create complex viewmodel objects from a simple object and a method call

My application needs to display a table of customer data, including data about the customer and about his most recent order from a given warehouse. The customer domain object contains a ...
0
votes
1answer
633 views

Using Automapper to update an existing Entity POCO

I am using EF4 DbContext to provide the model for an ASP.NET MVC app. I use ViewModels to provide data to the views and Automapper to perform the mapping between the EF POCOs and the ViewModels. ...
4
votes
3answers
530 views

Domain vs DTO vs ViewModel - How and When to use them?

In a Multi-layer project with Domain layer (DL)/Business (Service) Layer (BL)/Presentation Layer (PL), what is the best approach to deliver Entities to the Presentation Layer? D => Domain Object; ...
0
votes
0answers
96 views

Does this logic belong into the viewmodel, custom model binder or AutoMapper

Please see this question as origion to my problem: Bind a ViewModel to a DropDownListFor with a third value besides dataValueField/dataTextField This problem is solved. I just ask myself now wether ...
4
votes
4answers
322 views

How to mutate editmodel/postmodel to domain model

In an ASP.NET MVC project we are using AutoMapper to map from domain model to viewmodel - and sometimes also flattening a hierarchy while doing so. This works like a charm and makes the rendering ...
1
vote
2answers
162 views

Using mapping framework with drastically different Domain and view-models ?

If I have two models that are very different, is it defeating the purpose to even use a mapping framework such as Auto Mapper or Value Injecter? For example, say I have two models that are ...
2
votes
2answers
400 views

MVC How to map from my domain model to a specific view model

I'm getting started with the concept of mapping domain models to view models in ASP.NET MVC after watching a recommendation to do this to pass specific viewModels to the views. I've been able to ...
1
vote
2answers
327 views

Should I use AutoMapper from ViewModel to Model objects

I want to go the way doing all input validation in a viewmodel. When the database is accessed the viewmodels data must be copied over to the model sent to database. My concern is that data could be ...
1
vote
2answers
780 views

Automapper Mapping IEnumerable<SelectListItem> for Dropdown Menu

Problem I am currently adding automapping to my MVC project and I am stuck. Right now I have a User model used to represent data in the database. I have to map that model to a EditUserModel which ...
2
votes
1answer
1k views

AutoMapper map from source nested collection to another collection

EDIT: Title is incorrect, I am trying to map from a source list to a nested model's source list. I am having trouble trying to map a list to another listed in a nested model. Kind of and un-flatten ...
3
votes
1answer
824 views

“Merge” Model and ViewModel with or without AutoMapper?

I am currently using ViewModels to separate my Views from the actual Model structure. For example I have a User persistence entity and a MyProfile ViewModel containing all the information, that a ...
0
votes
1answer
431 views

ASP.Net MVC 3 AutoMapper

I am developing an ASP.Net MVC 3 Web application using Entity Framework 4.1 and also Automapper to map properties from my Objects to ViewModels and vice-versa. I have the following class called Shift ...
0
votes
1answer
962 views

Domain model to ViewModel and back again using repository pattern and Entity Framework in MVC3

I have read here http://lostechies.com/jimmybogard/2009/09/18/the-case-for-two-way-mapping-in-automapper/ about how you probably shouldn't be trying to un-flatten a flattened object, but considering ...
1
vote
1answer
1k views

Passing IEnumerable<Object> to ViewModel - Does Object need to be ViewModel?

Getting my head around MVC today and ran across the best practice of not passing a Model directly to a view. Instead, use a ViewModel. I researched AutoMapper and plan on using it to map my ...
0
votes
1answer
197 views

How to map two different classes into one ViewModel with Automapper?

I am developing an ASP.NET MVC3 application in C# and Razor. The architecture of the application is divided in Data Access Layer (EF classes + Repository), Service Layer, Controller, ViewModels and ...
0
votes
2answers
744 views

How to handle custom Properties in AutoMapper

I've got a ViewModel that takes some Model data and slightly alters it. The way I'm doing it "works" since I just pass the DomainModel to the constructor for the ViewModel, but since I'm using ...
1
vote
2answers
319 views

Confused: Why to do i have to map my entity object to viewmodel object

i am a complete newbie to the entity framework,mvc just started with it 3 weeks ago. From then i have been beating around the bush searching for the right approach.the more i dig the more i get ...
0
votes
1answer
222 views

how to get data annotations of the entityobject to viewmodel object without mentioning it again in viewmodel

i have been stuck with a problem where i have to use annotations on my viewmodel also for example my entityobject is User in the designer class (Teamwork.Designer.cs) Suppose i have the data ...
0
votes
2answers
424 views

asp.net mvc automapper using

recently i've started to use viewmodels with automapper. the problem appeared immediately. for example, i have such classes: public class Zone { public int ZoneId; public string Title; ...
0
votes
1answer
459 views

asp.net mvc using viewmodel for create and edit

want to get rid of ViewBag in my views so i've made a little research about viewmodels. i like the idea of using it for presentation, no questions here. but i don't realise what is the best way to ...
4
votes
1answer
636 views

MVCScaffolding and AutoMapper Mapped ViewModel

Does anyone know if there are Scaffolding templates etc for MVCScaffolding that create ViewModels per view and adds AutoMapper mapping for them? I want to follow Jimmy Boggards recommendation that ...
1
vote
1answer
522 views

How to Use AutoMapper to Map to Models With Inheritance and Nested Models

I have an Address entity with 2 sub types. Here's my simplified code: public class Address { public string Street1 { get; set; } public string Country { get; set; } } public class UsAddress : ...
1
vote
1answer
976 views

AutoMapper with complex types

I'm having a problem trying to use complex types with AutoMapper. I have two objects, a domain and a ViewModel that utlize in my View; ViewModel public class RegisterCoupleModel { ...
0
votes
1answer
279 views

Implementing Select List Lookup ViewModel Attribute

I'm trying to implement a more customisable version of using ViewModel attributes and a Model Enricher to populate viewmodels lists like in this this question and associated blog post. I would like ...
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 { ...
0
votes
1answer
619 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): ...
4
votes
3answers
2k views

Do i need to create automapper createmap both ways?

This might be a stupid question! (n00b to AutoMapper and time-short!) I want to use AutoMapper to map from EF4 entities to ViewModel classes. 1) If I call CreateMap<ModelClass, ...
1
vote
1answer
362 views

WCF decoupling via ViewModel facade ASP.NET

I am consuming several ASP.NET 4, WCF services in C# and want to know the best way of decoupling my code from the WCF structure. If this is not too much work as the client probably doesn't care. I ...
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 ...
1
vote
2answers
381 views

ViewModel with Collection of another ViewModel - Can AutoMapper Help Me Here?

I have a ViewModel that looks like this: public class CreateReviewViewModel { public string Title { get; set; } public decimal Score { get; set; } public ...
15
votes
2answers
23k views

Using view models in ASP.NET MVC 3

I'm relatively new to view models and I'm running into a few problems with using them. Here's one situation where I'm wondering what the best practice is... I'm putting all the information a view ...
19
votes
3answers
10k views

Ignore mapping one property with Automapper

I'm using Automapper and I have the following scenario: Class OrderModel has a property called 'ProductName' that isn't in the database. So when I try to do the mapping with: ...
0
votes
1answer
370 views

Convert a string value to an entity in Automapper

I am trying to figure out how to use Automapper when my entity has a field of type entity. I've got 3 classes like these: public abstract class Entity<IdK> { public virtual IdK Code { get; ...
4
votes
1answer
1k views

how to use automapper for a ViewModel with an IEnumerable<T> property

I'm trying to follow Jimmy Bogard's advice for automapping through an actionfilter (which works great in most cases). But what if I have a custom viewmodel with a collection property that I want ...
5
votes
1answer
799 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, ...
6
votes
2answers
4k views

How do I use AutoMapper to map multiple subclasses into one class?

Let's assume I have three classes that are subclasses of a base class: public class BaseClass { public string BaseName { get; set; } } public class Subclass1 : BaseClass { public string ...
0
votes
1answer
378 views

Need clarification on AutoMapper usage

I'm having a bit of a moral dilemma, as to if we are using automapper if the right way and if our architecture is valid. I'm a relatively new developer but this just feels wrong to me. My colleague ...
6
votes
2answers
783 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 ...
2
votes
2answers
3k views

Automapper string to enum

I've found a couple of posts that describe similar scenarios to mine but nothing that has the same concept or has been resolved so I'm sure I will get complaints about this question but I still want ...
8
votes
4answers
1k 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 ...
1
vote
1answer
431 views

ASP.NET MVC2 Posting a ViewModel mapping to Domain (LINQ) to Submitting changes

I'm using AutoMapper to map between a Linq Domain object and a ViewModel to display an Edit Form to the user which works perfectly. When they click submit I'd like to know the best way to map the ...
4
votes
0answers
1k views

asp.net MVC 2 - View Model / Model Validation - Is there a way to map validation attributes from model to ViewModel via AutoMapper?

A short while ago I'm sure I read that is was possible to use AutoMapper to map the validation attributes from the domain model to the view model, i can't find that post any more though! Has anybody ...
3
votes
5answers
4k views

ASP.net MVC: Creating SelectList in the view or action?

I'm just wondering where people are creating their SelectList - in the action or the view. I have seen examples of both and the one that makes the most sense to me is doing it in the action and have ...
49
votes
3answers
10k 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 ...
5
votes
2answers
3k views

AutoMapper - How to pass parameters into a Custom Resolver using ConstructedBy method?

In my ASP.NET MVC 2 (RC) project - I'm using AutoMapper to map between a Linq to Sql class (Media) and a view model (MediaVM). The view model has a SelectList property for a drop down in the view. I ...
1
vote
3answers
1k views

How to handle view model with multiple aggregate roots?

At the moment, i got quite badly fashioned view model. Classes looks like this=> public class AccountActionsForm { public Reader Reader { get; set; } //something... } ...
6
votes
4answers
1k 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 ...

1 2