Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

64
votes
10answers
13k views

ViewModel Best Practices

From this question, it looks like it makes sense to have a controller create a ViewModel that more accurately reflects the model that the view is trying to display, but I'm curious about some of the ...
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 ...
25
votes
3answers
48k views

ASP.NET MVC 2 - Html.DropDownListFor confusion with ViewModel

I'm getting totally lost and confused on how to use the new strongly typed Html.DropDownListFor helper on ASP.NET MVC 2.0 R2 In the View I'm writting: <%= Html.DropDownListFor(m => ...
16
votes
5answers
565 views

Does ASP.Net MVC 2 validation need some more thought in terms of patterns and use?

Here is the lay of the land. Like most people I have my domain object and I have my view models. I love the idea of using view models, as it allows for models to be created specifically for a given ...
16
votes
8answers
2k views

Mapping Validation Attributes From Domain Entity to DTO

I have a standard Domain Layer entity: public class Product { public int Id { get; set; } public string Name { get; set; } public decimal Price { get; set;} } which has some kind of ...
16
votes
6answers
10k views

ASP.NET MVC ViewModel Pattern

EDIT: I made something much better to fill and read data from a view using ViewModels, called it ValueInjecter. http://valueinjecter.codeplex.com/ using the ViewModel to store the mapping logic was ...
15
votes
3answers
5k views

How to create a strongly typed master page using a base controller in ASP.NET MVC

Following the NerdDinners example, I am interested in creating a strongly typed Master Page. In order to achieve this, I use a base controller which retrieves the data for the master page. All other ...
13
votes
4answers
3k views

Validation on ViewModels in ASP.NET MVC

Most of the tips on how to implement validation in ASP.NET MVC seem to center around the Model (either building service layers between model and controller or decorating properties of the model with ...
12
votes
3answers
1k views

Should a service layer return view models for an MVC application?

Say you have an ASP.NET MVC project and are using a service layer, such as in this contact manager tutorial on the asp.net site: ...
12
votes
5answers
3k views

DTO = ViewModel?

I'm using NHibernate to persist my domain objects. To keep things simple I'm using an ASP.NET MVC project as both my presentation layer, and my service layer. I want to return my domain objects in ...
11
votes
2answers
3k views

MVVM ViewModel vs. MVC ViewModel

ViewModel is a term that is used in both MVVM (Model-View-ViewModel) and the recommended implementation for ASP.NET MVC. Researching "ViewModel" can be confusing given that each pattern uses the same ...
11
votes
4answers
2k views

using ViewModels for POST actions in MVC elegantly

Currently I'm passing my domain objects to my views, and binding directly to them from POSTs. Everyone says this is bad, so I'm attempting to add in the ViewModel concept. However, I can't find a way ...
10
votes
3answers
738 views

EF Entities vs. Service Models vs. View Models (MVC)

I'm trying to understand and figure good practices for designing your app/domain models (POCOs/DTOs). Let's say I have the following database table, Account: UserID int Email varchar(50) ...
10
votes
1answer
2k views

ASP.NET MVC - different models for master page and view page

I have a strongly typed master page, but I want to use a different type for some of it's child pages. For example, on the master page... <%@ Master ... ...
9
votes
4answers
215 views

How are you populating/validating your ViewModels?

I'm curious of all of the various ways people are building their ViewModels and why they choose that method. I can think of several ways here: -1. Injected repository - the controller loads the ...
9
votes
3answers
290 views

MVC 3 - Controllers and ViewModels - Which should contain most of the business logic?

Currently in my application and using the unit of work pattern and generic repository, all my controllers contain all of the business logic. I'm in the process of putting everything over to use ...
9
votes
4answers
245 views

Are current MVVM view model practices a violation of the Single Responsibility Principle?

With current practices (at least with WPF and Silverlight) we see views bound via command bindings in the view model or we at least see view events handled in view models. This appears to be a ...
9
votes
4answers
3k views

ASP.NET MVC 2 - ViewModel Prefix

I want to use RenderPartial twice in my view with different models associated. The problem is that some properties are present in both models (nickname, password). They have no prefix, so even the ...
9
votes
5answers
4k views

WPF: how to signal an event from ViewModel to View without code in codebehind?

I have quite simple (I hope :)) problem: In MVVM, View usually listens on changes of ViewModel's properties. However, I would sometimes like to listen on event, so that, for example, View could ...
8
votes
4answers
129 views

How can I avoid command clutter in the ViewModel?

I am building an application that uses quite a few commands, and they are cluttering up my viewmodel. MVVM is new to me, so sorry if this question is a bit stupid. Is there a way to reduce the ...
8
votes
1answer
202 views

MVVM: Decouple Model from ViewModel

I've just started learning WPF MVVM using Prism and Unity. Decoupling the view from the viewmodel works pretty well, but I don't get how wire up my viewmodel and my model. I doesn't feel right to just ...
8
votes
4answers
607 views

WPF Event Binding to ViewModel (for non-Command classes)

I'm working an the second version of an application, and as part of the rewrite I have to move to an MVVM architecture. I'm getting pressure to put absolutely every bit of code in the view model ...
8
votes
2answers
494 views

How to update Model when binding to a ViewModel?

I have an [HttpPost] action method signature like this: [HttpPost] public ActionResult Edit(ExistingPostViewModel model) { // Save the edited Post. } Now, in the past (when i didn't use ...
8
votes
3answers
918 views

ASP.NET MVC - Posting a form with custom fields of different data types

In my ASP.NET MVC 2 web application, I allow users to create custom input fields of different data types to extend our basic input form. While tricky, building the input form from a collection of ...
8
votes
3answers
3k views

MVVM load data during or after ViewModel construction?

My generic question is as the title states, is it best to load data during ViewModel construction or afterward through some Loaded event handling? I'm guessing the answer is after construction via ...
8
votes
2answers
5k views

WPF MVVM Unit Tests for the ViewModel?

I keep reading about the benefits of using MVVM, especially for unit testing. So, now I need to write unit tests for my ViewModel. Does anyone have any examples of this? Should I just generate the ...
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 ...
7
votes
4answers
767 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
4answers
280 views

When is it right to use ViewData instead of ViewModels?

Assuming you wanted to develop your Controllers so that you use a ViewModel to contain data for the Views you render, should all data be contained within the ViewModel? What conditions would it be ok ...
7
votes
1answer
2k views

How do I use DomainContext.Load to populate properties of my ViewModel?

I have a Silverlight page that gets its data from a view model class which aggregates some data from various (RIA services) domain services. Ideally I'd like the page to be able to data bind its ...
7
votes
2answers
894 views

Flat vs Nested ViewModel Classes in ASP.NET MVC

I'm looking for some opinions on two different approaches to ViewModel definition I have a Company class public class Company { public string Name { get; set; } public int CountryID { get; ...
7
votes
5answers
1k views

MVP/MVVM - Filtering of lists, who has responsibility?

I'm implementing a wpf application which display a list of items, and provides the functionality to filter this list by typing in a textbox (quite trivial use case i think). We're using a MVVM ...
6
votes
5answers
152 views

In MVC3, should I have separate “edit” models vs. “display” models?

With MVC3, should I design my view models such that there is one that is bound to the view (DisplayModel), and one that is posted back to the controller (EditModel)? To clarify, I am not asking about ...
6
votes
2answers
103 views

ASP.NET MVC ViewModel with methods - is it “legal”?

Should viewmodels be limited to only have properties, and not methods? Let's say I have a radio button in my view, and wants to see if the radio button should be checked. I could do this entirely in ...
6
votes
4answers
5k views

MVC 3 form post and persisting model data

I think I'm missing some fundamentals on how MVC forms work. I have a search form on my home page that has five or six different fields a user can search on. So I have this POSTing to my results ...
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
3answers
220 views

Is it a bad practice using model classes in controller in mvc?

I wanted to compare with best practices when working with an ORM or database tables in asp.net mvc. One of the major questions I have is should I instantiate the model classes directly in ...
6
votes
1answer
485 views

Using ViewModel in ASP.NET MVC with FluentValidation

I am using ASP.NET MVC with Entity Framework POCO classes and the FluentValidation framework. It is working well, and the validation is happening as it should (as if I were using DataAnnotations). I ...
6
votes
1answer
745 views

How to use a Base ViewModel in Asp.net MVC 2

As I familiarize myself with Asp.Net MVC, I am using MVC 2, I have noticed the use of a BaseViewData class in the Kigg project which I am unsure how to implement. I want each of my ViewModels to have ...
6
votes
1answer
5k views

MVC2 Binding isn't working for Html.DropDownListFor<>

I'm trying to use the Html.DropDownListFor<> HtmlHelper and am having a little trouble binding on post. The HTML renders properly but I never get a "selected" value when submitting. <%= ...
6
votes
3answers
2k views

MVVM Passing data to dialog View Model

I'm looking into using MVVM and while I understand it for the most part, there is one thing I can't get my head around. Imagine I have a View and ViewModel combination that show a list of foobars. ...
6
votes
2answers
969 views

How to keep collections of viewmodels and models in sync

I'm using the wpf toolkit datagrid to display an observable collection of AccountViewModels. The thing is when I delete an account from the grid, I want it removed from the ObservableCollection - to ...
6
votes
2answers
719 views

ASP.NET MVC - Linq to Entities model as the ViewModel - is this good practice?

Quick questions really. I am currently building a site using asp.net MVC and the entity framework. I have a couple of repositories in place which return entities or lists of entities. I am finding ...
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
116 views

What's a clean/DRY way to show available operations on user content?

Working on an ASP.NET MVC 3 (Razor) application, that's mainly concerned with UGC (user generated content). I'm working on a "Q&A" area - where users can ask questions, others can answer, vote, ...
5
votes
1answer
2k views

Profile Object + View Model + Updating User Profile MVC C#

Problem: I have created a custom profile object as described by Joel here. I then used Jeremy's method (here) to extend the custom profile to allow me to use generate a user and set those values. I ...
5
votes
4answers
643 views

Question about MVC ViewModels and Entity Framework queries

I am new to both MVC and Entity Framework and I have a question about the right/preferred way to do this. I have sort of been following the Nerd Dinner MVC application for how I am writing this ...
5
votes
3answers
321 views

How should one propagate events from one ViewModel to another ViewModel in MVVW?

I'm brand new to the MVVW pattern, so you'll have to forgive me if I'm asking a very basic question. I have two ViewModels, we'll call them TreeViewViewModel and ListViewViewModel. TreeViewViewModel ...
5
votes
1answer
825 views

WPF MVVM: How do ViewModels communicate with each other?

I have a View which has 2 sub views on it and a ViewModel is assigned to each view: ViewA - ViewModelA { ViewB - ViewModelB ViewC - ViewModelC } ViewB has a text box and ViewC has a ...
5
votes
1answer
157 views

How to defer data querying in Silverlight ViewModel class?

I have a Silverlight app with several graphs and a date control on the top which allows the user to set the date range (e.g. July 1 - Sep 30). Basically, when a user modifies the date range, a ...

1 2 3 4 5 18