DTO is an acronym for Data Transfer Object, a design pattern used in data transfer.
1) I want to know what is the recommended way to create & return a DTO for an object which has 10 …
c# asp.net asp.net-2.0 dtoI'm trying to use DTOs in a Spring project to decouple business and presentation but I'm having problems while retrieving …
spring spring-data dtoHi I am getting null for List action in DTO while setting it from the Child Source class using mapstruct. …
java dto mapstructI have a standard Domain Layer entity: public class Product { public int Id { get; set; } public string Name { get; set; } …
asp.net-mvc validation domain-driven-design viewmodel dtoWhen writing unit tests I need some objects with sample data. For example suppose I have an Order object. One …
java unit-testing mocking dtoI have these data transfer objects: public class Report { public int Id { get; set; } public int ProjectId { get; set; } //and …
c# equals dtoProblem description: I have a POJO object, which is mapped from database. Which having attributes(column) with same name as …
java mapping dto pojo apache-commons-beanutilsI have a chat application backend built using Web Api where I am exposing several database entities directly to clients. …
asp.net asp.net-web-api chat dtoI am currently in my application maping DTOs to BO (and vice versa) manually. However, this approach is awkward and …
java reflection dto mappersimple question really, i was wanting to know what naming conventions anybody puts on there DTO / POCOS .... I didn't really …
c# naming-conventions poco dto