DTO is an acronym for Data Transfer Object, a design pattern used in data transfer.
I've inherited an MVC2 project using a pretty standard and decently well kept DDD pattern. I've been doing a lot …
asp.net-mvc domain-driven-design viewmodel dto separation-of-concernsRecently I was learning about ORM (Object Relational Mapping) and the 3 tier architecture style (presentation,business and data persistence). If …
model-view-controller orm dao data-access-layer dtoThe main question is how to convert DTOs to entities and entities to Dtos without breaking SOLID principles. For example …
java spring-boot design-patterns entity dtoI have the following Dto and entity with a nested sub entity. public class Dto { public string Property { get; set; } …
c# .net nested automapper dtoI have 2 entities CallRecords and CallRecordOperators with one-to-many relation as given below public class CallRecords { @Id @Column(name = "id", unique = …
java hibernate one-to-many dto mapstructI started wondering on whether I am not falling into an antipattern here, so please advise on the best practices. …
rest asp.net-web-api architecture dtoAfter reading some of the Q/As here on stackoverflow, I am still confused about the correct implementation of DTOs …
java jpa dto multi-tierI'm creating symfony2 application with doctrine2 and I would like to ask for advice regarding common/good practice for DTO-Entity, …
php symfony architecture doctrine-orm dtoWhat is the general idea to help deciding when to use DTO and when to use Entity in these cases ? …
jsf architecture jpa dto