I have a Silverlight app hosted in an Azure web role ASP project. The ASP project exposes a WCF service.
Consider this example: namespace ValueObjects { public class User { public string UserCode { get; set; } public string UserName { get; set; }
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 f
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?
i see this pattern over and over again and wanted to get opinions: Option 1: On the wire object and Business object composition: