How do bind my domain object Car to View?

MVC says "your class must have default constructor". But I don't want to change any business rules by creating a default constructor. The only solution I can see - is to use CarView in my View and then map it to Car.

P.S. NHibernate wants a default constructor too, but it can be protected. This I can do.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

IMHO, its a good idea to seperate the objects that go to your view from you domain objects. This has a long list of advantages (which I am not going into now).

You can then use Automapper to map your view models to your domain objects

link|improve this answer
I agree - your UI should work with view models, not your business objects. MVC is all about separation of concerns. This may seem like a lot of additional work, but with Automapper it's peanuts and will save you grief later on. – Jakub Konecki Feb 7 '11 at 18:09
feedback

You could create the object yourself and call UpdateModel to do the binding instead:

public ActionResult MyAction()
{
   var car = new MyCar(somethingToPassIntoTheConstructor);

   UpdateModel(car);

   // Do stuff with car.
}
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.