Tagged Questions

3
votes
1answer
44 views

Combining business object & data transfer object into one. Would it work?

I know data transfer objects are used for transferring data only and having lightweight objects over the wire. If I have tens or hundreds of business objects, creating dto's and mappers seems like 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
97 views

Is the only difference between a POCO and 'Value Object' is POCO targets .Net?

I am trying to understand the exact meaning of POCO actually (Yes i have read wikipedia already but still cannot get the main point :( ). I understand that Value Object is an object that basically ...