Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
11answers
2k views

Why should I isolate my domain entities from my presentation layer?

One part of domain-driven design that there doesn't seem to be a lot of detail on, is how and why you should isolate your domain model from your interface. I'm trying to convince my colleagues that ...
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 ...
6
votes
8answers
559 views

Business Objects - Containers or functional?

Where I work, we've gone back and forth on this subject a number of times and are looking for a sanity check. Here's the question: Should Business Objects be data containers (more like DTOs) or ...
6
votes
6answers
1k views

How much business logic should Value objects contain?

One mentor I respect suggests that a simple bean is a waste of time - that value objects 'MUST' contain some business logic to be useful. Another says such code is difficult to maintain and that all ...
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 ...
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 ...
3
votes
3answers
156 views

Difference between Transfer objects and Domain objects

Could you please explain the difference between Transfer objects and Domain objects in simple terms ? And if u could give a Java example, that would be great..
3
votes
2answers
254 views

Can DTO's have nested DTO's?

I have the following domain model: public class Playlist { public long Id { get; set; } public string Title { get; set; } public virtual ICollection<Song> Songs { get; set; } } ...
3
votes
2answers
117 views

Should the properties in Data Transfer Object expand the foreign keys or simply expose their primary keys

I have an EmployeeDTO that respresents an Employee record in the database. The Employee table has a relationship to a Department and a 1-to-many relationship to Permission. In my entities, these ...
3
votes
2answers
239 views

Using DTOs and BOs

One area of question for me about DTOs/BOs is about when to pass/return the DTOs and when to pass/return the BOs. My gut reaction tells me to always map NHibernate to the DTOs, not BOs, and always ...
2
votes
2answers
45 views

Is a Data Transfer Object same as Value Object?

Is a Data Transfer Object same as Value Object or they are different? If they are different then where should we use a DTO and where should we use a VO? The programming language we are talking about ...
2
votes
1answer
188 views

Copy data from JTable as HTML

JTable's default TransferHandler exports data in tab-delimited format. I'm trying to create my own TransferHandler that will export the data as an HTML table, but currently nothing gets copied to the ...
2
votes
4answers
167 views

Difference between Value Object pattern and Data Transfer pattern

In which scenario can I use those design patterns in n-tier architecture?
2
votes
3answers
806 views

what is a good pattern for converting between hibernate entities and data transfer objects?

I have had similar questions and concerns as to how to convert between Hibernate entities and data transfer objects to be returned by a web service as are discussed in this question: Is using data ...
2
votes
3answers
681 views

Why do transfer objects need to implement Serializable?

I realized today that I have blindly just followed this requirement for years without ever really asking why. Today, I ran across a NotSerializableException with a model object I created from scratch ...
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
98 views

business object, on the wire object and calculator - which is best

i see this pattern over and over again and wanted to get opinions: Option 1: On the wire object and Business object composition: On the wire object - the data that is serialized and sent back ...
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
1answer
96 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 ...
1
vote
1answer
111 views

Models just in a WCF Service or is it necessary a replica in the Client?

I am building an application. I am creating a Silverlight 4 client with the help of MVVM Light. I am acquiring data from a WCF Service. At least, this is the plan. In the WCF Service I have defined ...
1
vote
1answer
382 views

What is a DTO and BO? What is the difference?

I know DTO is a data transfer object and a BO is a business object. But, what does it actually mean? When should I choose one over the other? From, what I understand DTO is just used to transfer data ...
1
vote
1answer
113 views

Containership Question

Consider this example: namespace ValueObjects { public class User { public string UserCode { get; set; } public string UserName { get; set; } } public class Company { public ...
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; } ...
1
vote
3answers
139 views

Are there any frameworks or utilities (in the .NET space) for automatically generating data transfer objects from business objects

I'm looking for the best approach for generating data transfer objects from business objects (the type definition, not mapping the data) using a set of conventions (e.g. all public properties), and ...
1
vote
4answers
816 views

Java data transfer object naming convention?

Given this scenario where you have "transfer objects" (POJO's with just getters/setters) which are passed by a client library to your API, what is the best way to name the transfer objects? package ...
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
19 views

Learning mapping a class to XML schema complex type in JavaEE

If I have the following definitions @XmlType(name = "State", propOrder={"name", "zip"}) public class StateTo { ... @XmlElementWrapper(name = "Cities") @XmlElement(name = "City", type = ...
0
votes
0answers
61 views

Value object vs Data transfer object code examples

I'm looking for examples of value object and data transfer objects patterns. What I'm really looking for is way to send entity object through rest json. Unfortunatelly DTO and VO on google are often ...
0
votes
4answers
83 views

Java: Transferable Objects & Serialization

I need to serialize a Transferable object to I can send it over an object data stream but during runtime I get the error java.io.NotSerializableException & I have no idea whats wrong. How do I fix ...
0
votes
0answers
214 views

Android Bluetooth Data Transfer

I am creating a Tic Tac Toe Game. I am able to establish connecting between two devices and pair them. What i am trying to understand is how should i pass data between the two phones ? Which format ...
0
votes
1answer
88 views

Array to Virtual Object

Problem! I was wondering if it is possible for an array to be transfered into a virtual object via method. Let's say that I have a class "Person" with two properties "@name" and "@lastname" and then ...
0
votes
1answer
57 views

Should Transfer Object always reflect the entire DB row entry?

I've got a question on the transfer object in DAO pattern. Let's say you have a USER table, and there are 20 fields in this table. In the business logic, I notice that I may need field 1 to field 3 in ...
0
votes
1answer
92 views

Visual Studio project type for DTOs that should be accessible in Silverlight

What VS project type should I choose so that the data-transfer-objects that I create in it can be accessible in both in my Silverlight project as well as my WCF service project. (I want to be able to ...
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
279 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 ...
0
votes
2answers
500 views

DTO pattern vs Memento pattern

What are the differences between DTO pattern(by Fowler) and Memento pattern(by GoF) in motivation and implementation aspect? Can it be the same classes? If yes, how can I name them (xxxDTO or ...
0
votes
2answers
207 views

Sorrow with Data Transfer Objects in Silverlight / WCF

I have a Silverlight app hosted in an Azure web role ASP project. The ASP project exposes a WCF service. I would like to have one set of class definitions for the data types. Someone recommended ...
0
votes
1answer
426 views

GWT - Grails rpc with transfer object failing

GWT version: 2.0.0 Grail version: 1.1.2 Grails - GWT plugin version: grails-gwt-0.5-SNAPSHOT, used after 0.4.1 I'm calling a method from the gwt side passing a transfer object, which implements ...
0
votes
7answers
810 views

The meaning of API

Could anyone please tell me the meaning of API in following paragraph, that's actually about Transfer Object: If it's likely that a business service might be asked to send or receive all or ...