Tagged Questions
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?
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 ...
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
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 ...
2
votes
2answers
126 views
DTOs : Several DTO (and Assemblers) for the same resource
I often need, depending on cases, of several DTOs for a same resource.
Take the example of photo Albums. Depending of what i want to display, i'll need different data into my DTOs (creation thru a ...
2
votes
1answer
378 views
DataGridView Master-Detail for DTOs?
In my Windows Forms app, I two DataGridViews that represent a Master-Detail relationship. The datasource for each is a Data Transfer Object, represented as an IList(of T) -- so DataRelation is out. ...
1
vote
1answer
392 views
DTOs in WCF RIA Services Master-Detail
I have to make a Master-Detail scenario where in the master I can show many types of items, that they all implement IDto:
interface IDto
{
int Id { get; set; }
string Title { get; set; }
...
1
vote
2answers
321 views
Dto and domain entities. Did I create my dto correctly?
I have the following domain entity:
public class CartItem
{
public virtual Guid Id { get; set; }
public virtual Guid SessionId { get; set; }
public virtual int Quantity { get; set; }
...
0
votes
1answer
16 views
What does the `Key` Data Annotation do in database first?
Everything I find through Google refers to Code First so I'm wondering what the Key attribute is actually doing in regards to a Database First design? I'm mainly curious because a lot of the entities ...
0
votes
0answers
63 views
Alternative names for the “Change Set”, “Simple Entities”, and “Self-Tracking Entities” data transfer patterns?
This article on n-tier application patterns describes different ways of getting data across the wire between your middle tier and your client. It names these patterns:
Change Set -- e.g. sending ...
0
votes
1answer
280 views
Should DTOs in a composite DTO reference each other by primary key or by object reference?
There is a recommendation that transfer objects should not contain object references to other transfer objects. Instead, they should use the primary keys of the other transfer objects as foreign key ...