What are the biggest pain points with the ViewModel pattern? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:55:41Z http://stackoverflow.com/feeds/question/823992 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/823992/what-are-the-biggest-pain-points-with-the-viewmodel-pattern 0 What are the biggest pain points with the ViewModel pattern? Jeff Handley 2009-05-05T09:06:09Z 2009-09-18T17:37:21Z <p>Glenn Block and I have been working together on the ViewModel pattern. We’ve been trying to identify the biggest pain points associated with the pattern, with the goal of adding framework support to alleviate the pain.</p> <p>Tonight, Glenn posted, <a href="http://codebetter.com/blogs/glenn.block/archive/2009/05/04/view-model-the-movie-cast-your-vote.aspx" rel="nofollow">“View Model” – the movie, cast your vote</a>. We want to hear from you. Please post here (and vote) on what the biggest pain points are with implementing the ViewModel pattern (also known as Model-View-ViewModel or MVVM). Tell us how the framework can make you life easier!</p> <p>We are looking at both WPF and Silverlight.</p> <p><strong>So tell us, what do you want the framework to do to make ViewModel easier?</strong></p> http://stackoverflow.com/questions/823992/what-are-the-biggest-pain-points-with-the-viewmodel-pattern/825606#825606 2 Answer by Daniel Auger for What are the biggest pain points with the ViewModel pattern? Daniel Auger 2009-05-05T16:00:09Z 2009-05-05T16:00:09Z <ul> <li>Object explosion (Now we have both the model and a view model). </li> <li>Mapping the model to the viewmodel and vice versa. </li> </ul> <p>I think both are neccesary evils, but they are pain points. </p> http://stackoverflow.com/questions/823992/what-are-the-biggest-pain-points-with-the-viewmodel-pattern/991222#991222 0 Answer by ashish for What are the biggest pain points with the ViewModel pattern? ashish 2009-06-13T18:25:20Z 2009-06-13T18:25:20Z <p>Too many properties to create in ViewModel class. At least what I have saw, for each property of UI element you want to access/bind you need to create property in ViewModel that is too much code to maintain.</p> http://stackoverflow.com/questions/823992/what-are-the-biggest-pain-points-with-the-viewmodel-pattern/1074328#1074328 2 Answer by Joe White for What are the biggest pain points with the ViewModel pattern? Joe White 2009-07-02T13:26:28Z 2009-07-02T13:26:28Z <p><strong>Collections.</strong></p> <p>I want my Model to have a collection of other Model objects, but bind my GUI to a collection of ViewModel objects.</p> <p>I can create an <code>ObservableCollection&lt;TViewModel&gt;</code> in my ViewModel layer, and manually populate that with a ViewModel for each item in the Model-level collection. That works fine -- when the program starts up. But then what happens when the user clicks the Add button? Or the Delete button? Or Move Up / Move Down? Etc.</p> <p>Yes, I can write code to keep the ViewModel list in sync with the Model list, but there are a lot of subtle edge cases, and it's a lot of work (and a lot of tests) to get all the details right. This is a common scenario and should be baked into the framework. (Please?)</p> http://stackoverflow.com/questions/823992/what-are-the-biggest-pain-points-with-the-viewmodel-pattern/1445915#1445915 0 Answer by Tomáš Kafka for What are the biggest pain points with the ViewModel pattern? Tomáš Kafka 2009-09-18T17:37:21Z 2009-09-18T17:37:21Z <p>INotifyCollectionChanged supports notification about range of changes, but all WPF collection controls throw range not supported exception when you try to post range update. This means that if you add 10 items to container, the layout is re-evaluated 10 times, which is pretty slow with complex controls!</p> <p>Solution would be to add SuspendNotifocations and ResumeNotifications methods to Observable collection, and to make all WPF controls aware of range updates (use case: suspend, add items, resume, all items are drawn at once).</p>