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 some scenarios, and field 4 - field 6 in other scenarios. So when I implement the userTO class, should I only define field 1 - 6 only or I should define all 20 fields. Another thing is if I define all 20 fields, the SQL in the UserDAOImpl class will always need to fetch all 20 fields in order to initiate the userTO object, will that be a issue?
Any suggestions are greatly appreciated. Thanks!