Hello,
What is the difference between a MVC Model object, a domain object and a DTO?
My understanding is:
MVC Model object:
Models the data to be displayed by a corresponding view. As such may not map directly on to a domain object, i.e. may include data from one or more domain objects.
- Client side
- May contain business logic, e.g. validation, calculated properties, etc
- No persistence related methods
Domain object:
Object that models a real world object in the problem domain like Reservation, Customer, ORder, etc. Used to persists data.
- Server side
- No business logic
DTO (Data Transfer Object):
An object used to transfer data between layers when the layers are in separate processes, e.g. from a DB to a client app. Allows a single transaction across the wire rather than multiple calls. A DTO contains just data and accessor methods, no logic. The data is for a particular DB transaction so may not may directly on to a domain object, i.e. may include data from one or more domain objects.
- Used on both sides as passed between layers
- No business logic
- No persistence related methods
So to the questions:
(1) Is my understanding correct? Am I missing some key points?
(2) Are there any reasons not to use Domain objects as the MVC Model assuming that the Model objects do not require extra business logic?
(3) Are there any reasons not to use DTOs as the MVC Model assuming that the Model objects do not require extra business logic?
Thanks.
Tim