ServiceStack Request DTO design
To give you a flavor of the differences you should think about when designing message-based services in ServiceStack I’ll provide some examples comparing WCF/WebApi vs ServiceStack’s approach: WCF vs ServiceStack API Design WCF encourages you to think of web services as normal C# method calls, e.g: public interface IWcfCustomerService { Customer GetCustomerById(int id); List<Customer> GetCustomerByIds(int[] … Read more