Tagged Questions
DTO is an acronym for Data Transfer Object, a design pattern used in data transfer.
69
votes
6answers
17k views
POCO vs DTO
POCO = Plain Old CLR (or better: Class) Object
DTO = Data Transfer Object
In this post there is a difference, but frankly most of the blogs I read describe POCO in the way DTO is defined: DTOs are ...
33
votes
9answers
10k views
any tool for java object to object mapping?
Friends, I am trying to convert DO to DTO using java and looking for automated tool before start writing my own. I just wanted to know if there any free tool available for the same.
21
votes
8answers
5k views
Why are Data Transfer Objects an anti-pattern?
I've recently overheard people saying that DTOs are an anti-pattern. Can someone please explain why? What are the alternatives?
18
votes
3answers
19k views
Difference between DTO, VO, POJO, JavaBeans?
Have seen some similar questions here and here.
Can you also please tell me the contexts in which they are used?? Or the purpose of them?
16
votes
8answers
2k views
Mapping Validation Attributes From Domain Entity to DTO
I have a standard Domain Layer entity:
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set;}
}
which has some kind of ...
14
votes
6answers
7k views
Best Practices For Mapping DTO to Domain Object?
I've seen a lot of questions related to mapping DTOs to Domain Objects, but I didn't feel they answered my question. I've used many methods before and have my own opinions but I'm looking for ...
12
votes
5answers
3k views
DTO = ViewModel?
I'm using NHibernate to persist my domain objects.
To keep things simple I'm using an ASP.NET MVC project as both my presentation layer, and my service layer.
I want to return my domain objects in ...
12
votes
4answers
7k views
what is Data Transfer Object?
what is a Data Transfer Object?
In MVC are the model classes DTO, and if not what are the differences and do we need both?
11
votes
4answers
446 views
Constructing an object graph from a flat DTO using visitor pattern
I've written myself a nice simple little domain model, with an object graph that looks like this:
-- Customer
-- Name : Name
-- Account : CustomerAccount
-- HomeAddress : PostalAddress
...
10
votes
6answers
1k views
Hows to quick check if data transfer two objects have equal properties in C#?
I have these data transfer objects objects:
public class Report
{
public int Id { get; set; }
public int ProjectId { get; set; }
//and so on for many, many properties.
}
I don't want ...
9
votes
4answers
1k views
What is the best practice for sending data to the client: POCO or DTO?
I'm starting a project using EF 4 and POCO.
What is the best practice for sending data to the client ? Should I send the POCO or I should have a DTO instead?
Are there any issue I should be aware ...
9
votes
6answers
10k views
Entity Framework + AutoMapper ( Entity to DTO and DTO to Entity )
I've got some problems using EF with AutoMapper. =/
for example :
I've got 2 related entities ( Customers and Orders )
and they're DTO classes :
class CustomerDTO
{
public string CustomerID ...
8
votes
3answers
3k views
Using a WCF Service with Entity Framework 4 and…DTO?
As described above I'm implementing a multi-tier architecture to work with WCF and Entity Framework 4 (with poco). Since I'm already have persistence ignorance with POCO I do need implement DTO or I ...
8
votes
3answers
3k views
POCO's, DTO's, DLL's and Anaemic Domain Models
I was looking at the differences between POCO and DTO (It appears that POCO's are dto's with behaviour (methods?))and came across this article by Martin Fowler on the anaemic domain model.
Through ...
8
votes
2answers
4k views
How to Design Data Transfer Objects in Business Logic Layer
DTO
I'm building a Web application I would like to scale to many users. Also, I need to expose functionality to trusted third parties via Web Services.
I'm using LLBLGen to generate the data access ...
7
votes
6answers
2k views
DTO or Domain Model Object in the View Layer?
I know this is probably an age-old question, but what is the better practice? Using a domain model object throughout all layers of your application, and even binding values directly to them on the ...
6
votes
4answers
482 views
DTO Generator for EF 4 Entity model
Is it possible to write t4 template ( or if it already exists ) which will be able to generate DTO classes based on the data in the *.edmx file?
I have to write DTO classes for the current project, ...
6
votes
1answer
477 views
DTO shape: flat, complex/nested, or a mixture of both
I have an MVC2 n-tier application (DAL, Domain, Service, MVC web) using a DDD approach (Domain Driven Design), having a Domain Model with repositories. My service layer uses a Request/Response ...
6
votes
2answers
621 views
MVVM pattern: ViewModel updates after Model server roundtrip
I have stateless services and anemic domain objects on server side. Model between server and client is POCO DTO. The client should become MVVM. The model could be graph of about 100 instances of 20 ...
6
votes
4answers
1k views
prefixing DTO / POCOS - naming conventions?
simple question really, i was wanting to know what naming conventions anybody puts on there DTO / POCOS ....
I didn't really want to prefix like hungarian notation.. i got away from that!.
But my ...
5
votes
4answers
124 views
Why do we sometimes separate behaviour from classes in Java
Its a pretty basic question but I am new to Java designing to please excuse me. :)
I want to know in which scenarios we need to separate the class behavior from the class itself.
for e.g.
If I ...
5
votes
3answers
90 views
Managing DTOs and mapping in large .NET project
My team and I are building a large .NET WinForms applications. The application uses various "Services" to get data to and from our database. Each "service" lives in its own solution, and handles a ...
5
votes
1answer
214 views
Is this a proper use of DTO?
I'm writing a console application that does a good amount of data retrieval from stored procedure recordsets. For each recordset type I'm working with, I have a Repository that uses EF with custom ...
5
votes
4answers
1k views
Domain Entities, DTO, and View Models
I have an ASP.NET MVC 2 application with a POCO domain model and an NHibernate repository layer. My domain model has no awareness of my viewmodels so I use automapper to go from viewmodel to entity ...
5
votes
2answers
791 views
What is the difference between an MVC Model object, a domain object and a DTO
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 ...
5
votes
2answers
1k views
Share DTO objects between WCF services
I feel this is a stupid question even before asking, but my brain isn't working too well right now. I have two WCF services "CountryService" and "FloristService".
Now CountryService has the ...
4
votes
3answers
100 views
Strategies for converting collections from one type to another
What is the most efficient way to convert ArrayLists with EO (Entity Object) into ArrayLists of DTO objects or ArrayLists of Ids. Please, keep in mind that every EO may consist of properties which are ...
4
votes
4answers
160 views
What drives the design of a data transfer object?
I am writing a web service. I am also writing a web client which uses this web service. I've experienced some of the pain of trying to send domain objects over the wire (cyclic references, lazy ...
4
votes
3answers
577 views
Value Objects in CQRS - where to use
Let's say we have CQRS-inspired architecture, with components such as Commands, Domain Model, Domain Events, Read Model DTOs.
Of course, we can use Value Objects in our Domain Model. My question is, ...
4
votes
2answers
762 views
Should a WCF service return an EntityObject or a POCO/DTO class?
I've been looking at a lot of WCF examples using EntityFramework and most of them seem to return some kind of POCO or DTO class to the client.
I was wondering why this was since the default ...
4
votes
2answers
161 views
Refactoring crazy inheritance hierarchies of value objects - How to get a list of all fields and types?
So basically, I need to manually adjust an inheritance hierarchy. I'd like for the classes to be perfect, no extra fields, and they're just DTO's. However, it's really easy to get lost and add ...
4
votes
3answers
366 views
Framework for converting java objects
I am working on project that converts database entities into DTO objects. To do it a special converter class is used for each convertion.
I am providing simplified example of the things we are ...
4
votes
5answers
510 views
Should business objects be able to create their own DTOs?
Suppose I have the following class:
class Camera
{
public Camera(
double exposure,
double brightness,
double contrast,
RegionOfInterest regionOfInterest)
{
...
4
votes
6answers
2k views
Should I map a DTO to/from a domain entity on both client and server sides?
I've got a rich domain model, where most classes have some behaviour and some properties that are either calculated or expose the properties of member objects (which is to say that the values of these ...
4
votes
5answers
1k views
DTOs vs Serializing Persisted Entities
I'm curious to know what the community feels on this subject. I've recently come into the question with a NHibernate/WCF scenario(entities persisted at the service layer) and realized I may be going ...
4
votes
2answers
780 views
Is my ASP.NET MVC application structured properly?
I've been going through the tutorials (specifically ones using Linq-To-Entities) and I understand the basic concepts, however some things are giving me issues.
The tutorials usually involve only ...
4
votes
4answers
865 views
Confusion between DTOs (linq2sql) and Class objects!
i have been successfully working with linq2sql and the linq DTOs (the classes that are created by linq2sql) ....
I am confused, i have the task of updating an old application and i can see that my ...
4
votes
3answers
1k views
Data Transfer Objects and transactional service methods
Is there any truly practical way to avoid using DTOs, when passing data through Hibernate-backed transactional service methods? In other words, are DTOs the only non-hacky solution to avoiding lazy ...
4
votes
4answers
2k views
Constructing a Domain Object from multiple DTOs
Suppose you have the canonical Customer domain object. You have three different screens on which Customer is displayed: External Admin, Internal Admin, and Update Account.
Suppose further that each ...
3
votes
2answers
134 views
Linq-to-SQL and WCF service - data transfer objects
I'm curious about best practice when developing n-tier application with Linq-to-SQL and WCF service.
In particular, I'm interested, for example, how to return to presentation tier data from two ...
3
votes
1answer
48 views
Handling Aggregations in a Service or DAO
The ever so popular discussion on designing proper DAOs always concludes with something along the lines of "DAOs should only perform simple CRUD operations".
So what's the best place to perform ...
3
votes
2answers
108 views
POJO or DTO approach
I am developing a new web application with Struts2, Spring and Hibernate as its core building blocks.
We have created POJO classes with respect to hibernate mapping files.There will be some inputs ...
3
votes
3answers
288 views
GWT RPC: DTO vs. DAO?
I've started learning GWT about a week ago and here's the question I can't answer for sure.
Here's the server-side:
// business object - has logic
interface Article {
String getTitle(); // lazy
...
3
votes
2answers
157 views
DAO pattern when using hibernate
We use hibernate in our application and like to use DAO pattern to implement the data layer of application. I have seen some suggestions on using ValueObjects/DTOs to return data from DAOs
public ...
3
votes
1answer
68 views
Need some clarifications on the Model side of MVC
I guess I would need some really good explanation on some Model related concepts.
In general does the model, as described by frameworks like Robotlegs play the role of an application state holder, ...
3
votes
3answers
155 views
WCF and size of DTOs
We've got a business logic/data access layer that we're exposing on a couple of different endpoints via a WCF service. We've created DTOs for use as the data contract of the service. We'll be using ...
3
votes
1answer
485 views
ValueInjecter question
After working with AutoMapper I came across ValueInjecter on this site. I am trying it out but I am stuck on what is probably a very simple scenario.
But before I dig into the code sample, does ...
3
votes
1answer
479 views
Should the repository layer return data-transfer-objects (DTO)?
I have a repository layer that is responsible for my data-access, which is called by a service layer. The service layer returns DTOs which are serialized and sent over the wire. More often than not, ...
3
votes
3answers
727 views
An ASP.NET MVC validator to make sure at least one checkbox is checked
I have an ASP.NET MVC 2 project in which I've created a data transfer object to receive data from a web page form. The form has two groups of checkboxes on it. I want to validate the object to make ...
3
votes
1answer
417 views
From AutoMapper to Emit Mapper
I've recently discovered AutoMapper for bridging ViewModels and my actual DB objects. I use it in the way decribed here: ...