Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Heres the scenario: I have a User object like this:

 public class User : BaseEntity<User>, IAggregateRoot
 {
    public virtual string Name { get; set; }
    public virtual string Username { get; set; }
    public virtual string Password { get; set; }
    public virtual string SecretQuestion { get; set; }
    public virtual string SecretAnswer { get; set; }
    public virtual DateTime LastLogin { get; set; }
 }

During the editing of this object, i load it into the view, but i only want to update some of the properties (ie i wouldnt want to update LastLogin property). In this situation what would i do?

Is the best strategy to create a user viewmodel, and will nhibernate cope with this when i try to update a user object with a null LastLogin field?

Thanks in advance.

EDIT

Something like this:

public class UserViewModel
{
  public string Name {get;set;}
  public string UserName {get;set;}
  public string Password {get;set;}
  public string SecretQuestion {get;set;}
  public string SecretAnswer {get;set;}
}

And then the editing:

public ActionResult Edit(int id)
{
  return View(_userRepository.FindById(id));
}

[HttpPost]
public ActionResult Edit(int id, UserViewModel userViewModel)
{
  try
  {

    //Not sure how to update the model 
    //with the view Model and save.

    _userRepository.Update(????);
    return RedirectToAction("Index");
  }
  catch
  {
    return View();
  }
}
share|improve this question

2 Answers

up vote 7 down vote accepted

A good approach is to create a UserViewModel with only the properties you want to display/update. Don't let nHibernate know about the view model. Then, when the edits are posted back to your controller you retrieve the actual User object from nHibernate, update it's properties from the view model, and then save it back to the database.

Update

Something like this:

[HttpPost]
public ActionResult Edit(int id, UserViewModel userViewModel)
{
  try
  {
    User model = _userRepository.FindById(id);

    model.Name = userViewModel.Name;
    model.Username = userViewModel.Username;
    model.Password = userViewModel.Password;
    model.SecretQuestion = userViewModel.SecretQuestion;
    model.SecretAnswer = userViewModel.SecretAnswer;

    _userRepository.Update(model);
    return RedirectToAction("Index");
  }
  catch
  {
    return View();
  }
}

In a project I've been working on recently I created a ViewModelBase class which includes methods that maps properties from a domain model to a view model and back again based on matching the property name and type. All my view models are derived from ViewModelBase.

There are other tools like AutoMapper that do this sort of thing and much, much more.

share|improve this answer
Hi andrew thanks for your reply. Can you post as example of the viewmodel and an edit post using my class above? Its the edit bit i am unsure about. – gdp May 17 '11 at 21:48

I'm adding another answer, because there is another, completely different, approach.

You can just use your User object in your view, and then use TryUpdateModel to specify the properties to update in the model. You don't necessarily need a view model in this case. You can use one if you want, but you don't have to.

The Post action would then look something like:

[HttpPost]
public ActionResult Edit(int id)
{
  try
  {
    User model = _userRepository.FindById(id);
    var propertiesToUpdate = new string[] { "Name", 
                                            "Username", 
                                            "Password", 
                                            "SecretQuestion", 
                                            "SecretAnswer" };

    if (TryUpdateModel(model, propertiesToUpdate)) {
      _userRepository.Update(model);
      return RedirectToAction("Index");
    }
  }
  catch
  {
    // Handle exceptions however you want.
  }
  return View();
}

The string array is a white-list of properties to update in the model, and the controller attempts to update the values from the form post data (and other sources). Because LastLogin is not in the string array, it won't be touched in the update of the model.

share|improve this answer
Great stuff thanks for your input! – gdp May 18 '11 at 18:17
Hi Andrew, i got both working fine. Just curious which method would you favour and why? – gdp May 19 '11 at 23:19
For an application with simple domain models I'd probably choose the method in this answer because creating a bunch of new view model classes and the associated mapping logic would just be overkill. When the domain model is more complex, and your views pull values from more than one domain object class I'd go with the ViewModel solution. In the system I was building at work recently I started out without ViewModels, but it very quickly became too complex to manage cleanly. I ended up implementing ViewModels for most of the views, resulting in many more classes, but much more readable code. – Andrew Cooper May 19 '11 at 23:43
Thanks for your input. – gdp May 20 '11 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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