I am implementing a WPF based application using MVVMfor the UI.

I have a ViewModel that wraps each editable Model that can be edited. The VM contains all the logic for handling error notifications, "is dirty" management and so forth ..

This design supports well CRUD schenarios for simple domain Model objects that are anemic, that is, do not contain any logic.

Now, I am facing a more tricky problem cause I have a domain Model that contains logic and that logic can change the internal state of the domain Model.

Do someone have already faced this scenario ? If so, do you have some advices to handle this correctly ?

Riana

link|improve this question

50% accept rate
feedback

3 Answers

Here is how I usually deal with it:

  1. The ViewModel layer is made of types that belong to this layer, meaning I don't ever directly use my business objects inside of a ViewModel. I map my business objects to ViewModel objects that may or may not be the exact same shape minus the behaviors. It can be argued that this violates Don't Repeat Yourself, but doing so allows you to adhere to the Single Responsibility Principle. In my opinion, SRP should usually trump DRY. The ViewModel exists to serve the view, and the model exists to serve business rules / behavior.

  2. I create a facade/service layer that takes and returns ViewModels as arguments, but maps the ViewModels to-and-from their corresponding business object versions. This, way the non-anemic objects won't impose non view logic on the ViewModel

The dependencies would look like this:
ViewModel <--> Facade/ServiceLayer --> Business Objects

I think it is important to keep this in mind if you want to unleash the full potential of MVVM: The ViewModel is the model/abstraction of the view, not the model presented to the view.

link|improve this answer
Hi Daniel and thanks for your answer. My application is constructed almost exactly as you described except that I use another mechanism to map the Model with the ViewModel. Now suppose, your Model contains a behavior that change the state of one of its properties and that behavior should be triggered from UI (on button click or whatever). How do you handle this situation cause that is exactly the point of my question ? Did you reproduce the logic in your VM too ? Thanks. – Riana Rambonimanana Mar 29 '11 at 6:41
1  
Lets say we have a "calculate total" button and an OrderViewModel. The button click would trigger a CalculateOrder command which would call the CalculateOrder method on the ViewModel, which in turn would call to _facade.CalculateTotal(orderViewModel); The facade would map everything to business objects, calculate the total and then return the updated ViewModel. – Daniel Auger Mar 29 '11 at 16:53
Thanks for your advice Daniel, it is very useful for me ! So in fact, from that architecture, your facade will be responsible for executing behavior on the domain model, track domain model state changes then update the VM to display new state of the domain model right ? – Riana Rambonimanana Apr 14 '11 at 20:42
Riana - Yes, exactly. – Daniel Auger Apr 15 '11 at 20:07
feedback

Try using Command pattern. Your screen should be design not to edit an entity but to perform an action (command) on an entity. If you follow that principle when designing your screens, your ViewModel will have properties that should be mapped to a command object. Then, the command will be send to an (remote) facade of the domain model.

ViewModels for displaying the data could be mapped directly to the database (bypassing the domain model altogether) so that you don't need to put nasty getters in the domain model classes.

link|improve this answer
Thanks Szymon for your answer. You are describing the CQRS architecture right ? In fact,I have considered it but gave up cause I was afraid, it creates lot of overhead for my simple little app. However, I suspect that using this model with commands to edit domain model should be the best way to go currently for my problem and I actually try to dive deeper this manner to do. – Riana Rambonimanana Mar 29 '11 at 8:39
feedback

If the domain model is non-anemic, you will need to use events to communicate internal changes in the Model back to the ViewModel. That way you don't have to worry about keeping track of what operations could potentially make your VM out-of-sync with the model.

Here's a simple example:

First, a sample model:

public class NonAnemicModel
{
    private string _name;

    public string Name
    {
        get { return _name; }
        set
        {
            if (_name == value)
                return;

            _name = value;
            OnNameChanged(EventArgs.Empty);
        }
    }

    public event EventHandler NameChanged;
    protected virtual void OnNameChanged(EventArgs e)
    {
        if (NameChanged != null)
            NameChanged(this, e);
    }

    public void PerformNameCalculation(int chars)
    {
        //example of a complex logic that inadvertently changes the name
        this.Name = new String('Z', chars); //makes a name of Z's
    }
}

And here's a sample ViewModel:

public class MyViewModel : INotifyPropertyChanged
{
    private NonAnemicModel _model;

    public NonAnemicModel Model 
    {
        get { return _model; }
        set
        {
            _model = value;
            _model.NameChanged += (sender, args) => NotifyPropertyChanged("UserName");
        }
    }

    public string UserName 
    {
        get { return this.Model.Name; }
        set { this.Model.Name = value; }
    }

    //this command would call out to the PerformNameCalculation method on the Model.
    public ICommand PerformNameCalculation { get; private set; }
}

Notice that the PropertyChanged event is raised when the Name on the model changes. That way, regardless of whether the UserName setter was used, or the PerformNameCalculation command was used, the ViewModel stays in sync. The big downside to this is that you have to add many more events to your Model, but I've found that having these events in place is usually very helpful in the long run. Just be careful about memory leaks with events!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.