Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Binding to Model or ViewModel [closed]

Tags:

c#

mvvm

binding

wpf

I know there are already questions on that topic, but the issues there are somewhat specific to other problems and do not offer conclusive answers.

Especially those here: Question1, Question2 and of course Question3 so please do not close this question too fast. They answer there just say "Do this, do that" and not why!

There are people out there that deny the need for a ViewModel and say that the "standard" way is to bind to the Model directly. This is what I deny and try to prove with technical arguments.

From my background in MVC, MVP, Presentation Model, it just is natural to me to use a ViewModel. Perhaps I miss an important point?

So for me the default is to bind to a ViewModel, no matter what the Model is (and no matter if it implements INotifyPropertyChanged or not).

There are several reasons that I see for binding to ViewModels, including (As mentioned here CodeProject and here on another article)

1. Removing logic from the View

  • Make logic unit testable
  • reduce code redundance (duplication where needed)

2. Security

  • The model contains properties that the user shall not change
  • Automatic, but unwanted updates can happen if Binding to model

3. Loose coupling

  • If binding directly to the model, there will be a coupling between lower layers and View
  • Changing the Model causes changes in all the Views
  • The view is not depending on any given model
  • Model can be easily generated with EF, some DSL, batch files, on so on

4. Speed of development

  • You can start with a Prototype ViewModel hierarchy and bind to that
  • If the model is still under development, you can start with a Prototype Model
  • Model and ViewModel can be developed testdriven, no matter of the View
  • The View can entirely be built by a designer, or developer with strong design background

5. "Tricky synchronizion" is solved

  • There are plenty of solutions to any given "tricky synchronization" problem, e.g.
  • AutoMapper
  • Event system from the model (model fires event, ViewModel subscribes)

6. Equal structure throughout the project

  • There are points where have to a ViewModel, like SelectedItem
  • Mixing Binding to Model and ViewModel is errorprone
  • It is harder for fresh developers to figure out structure of the project
  • starting to bring ViewModel later when there is no way around it is messy

7. Scalability

  • Lets define: If you do not use a ViewModel, it is not MVVM
  • MVVM can be easily adopted to lots of datasources, lots of views
  • If you find any performance issues: Lazy loading and caching goes in the ViewModel

8. Separation of concerns

  • Getting a grip on complexity is the main problem in software
  • The ViewModels sole responsibility is pushing changes
  • It is as easy to send notifications to a view as it is to push it to a different process or machine
  • The ViewModel, not the View register for change notifications on the model / data source
  • the datasource can ignore sending events to the ViewModel that caused the change

On contrary, the guy from the other thread dumps some points, including

  1. If the model is updated directly, the view-model won't know to fire a property changed event. This causes the UI to go out of sync. This severely limits your options for sending messages between parent and child view-models.

  2. If the model has its own property changed notification, #1 and 2 aren't a problem. Instead, you have to worry about memory leaks if the wrapper VM goes out of scope but the model doesn't.

  3. If your models are complex, with lots of children objects, then you have to walk the entire tree and create a second object graph that shadows the first one. This can be quite tedious and error prone.

  4. Wrapped collections are particularly difficult to work with. Any time something (UI or backend) inserts or removes an item from a collection, the shadow collection needs to be updated to match. This kind of code is really hard to get right.

So, the question is: what is the default way to bind and why?

Do I miss points that make it necessary to have a ViewModel?

Are there any real reasons one would like to bind to a model?

Most important is the why, not the how to.

like image 981
Mare Infinitus Avatar asked Jun 05 '13 18:06

Mare Infinitus


People also ask

What is difference between ViewModel and model?

A model is usually more closely related to how your data is stored (database, services, etc.) and the model will closely resemble those. The ViewModel on the other hand is closely related to how your data is presented to the user. It is usually a flatten version of your model, denormalized, etc.

What is binding in MVVM?

Data Binding allows you to effortlessly communicate across views and data sources. This pattern is important for many Android designs, including model view ViewModel (MVVM), which is currently one of the most common Android architecture patterns.

Should each view have its own ViewModel?

While a view should only have one viewmodel, a single viewmodel might be used by multiple views (imagine a wizard, for example, that has three views but all bind to the same viewmodel that drives the process).

Should a ViewModel have a constructor?

At present, this means that every ViewModel must have a public constructor which has either no parameters or which has only string parameters.


1 Answers

View models usually contains members, which are intended to be used with view (e.g., properties like IsSomethingSelected, IsSomethingExpanded, IsSomethingVisible, any implementation of ICommand).

Do you see any reason to bring all those stuff into models? Of course, no. That's why view models exists.

like image 73
Dennis Avatar answered Sep 25 '22 20:09

Dennis