Top "Dto" questions

DTO is an acronym for Data Transfer Object, a design pattern used in data transfer.

Difference between DTO, VO, POJO, JavaBeans?

Have seen some similar questions: What is the difference between a JavaBean and a POJO? What is the Difference Between …

java terminology javabeans dto pojo
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 …

model-view-controller architecture dto data-transfer data-transfer-objects
any tool for java object to object mapping?

I am trying to convert DO to DTO using java and looking for automated tool before start writing my own. …

java mapping dto
Plain Old CLR Object vs Data Transfer Object

POCO = Plain Old CLR (or better: Class) Object DTO = Data Transfer Object In this post there is a difference, but …

c# .net poco dto
REST API - DTOs or not?

I am currently creating a REST-API for a project and have been reading article upon article about best practices. Many …

java spring rest dto hateoas
Best Practices For Mapping DTO to Domain Object?

I've seen a lot of questions related to mapping DTOs to Domain Objects, but I didn't feel they answered my …

.net asp.net design-patterns dto
Why are data transfer objects (DTOs) an anti-pattern?

I've recently overheard people saying that data transfer objects (DTOs) are an anti-pattern. Why? What are the alternatives?

java ejb dto anti-patterns data-transfer-objects
Data transfer object pattern

i'm sorry i'm newbie to enterprise application as well as the design pattern. might be this question occcur lack of …

c# .net design-patterns dto
Json A circular reference was detected while serializing an object of type

Give the classes: public class Parent { public int id {get; set;} public int name {get; set;} public virtual ICollection<…

c# json dto
Entity Framework + AutoMapper ( Entity to DTO and DTO to Entity )

I've got some problems using EF with AutoMapper. =/ for example : I've got 2 related entities ( Customers and Orders ) and they're DTO …

c# entity-framework automapper dto