¡@

Home 

c# Programming Glossary: dtos

Getting ServiceStack to retain type information

http://stackoverflow.com/questions/10750571/getting-servicestack-to-retain-type-information

share improve this question Inheritance in DTOs is a bad idea DTO's should be as self describing as possible.. in application code that's being thoughtlessly leaked into DTOs. But across process boundaries interfaces only adds coupling..

Recommended ServiceStack API Structure

http://stackoverflow.com/questions/15231537/recommended-servicestack-api-structure

could use EventMan.ServiceModel Service Request Response DTOs and DTO types Events.cs Events CreateEvent GetEvent UpdateEvent.. types Events.cs Events CreateEvent GetEvent UpdateEvent DTOs EventReviews.cs EventReviews GetEventReview CreateEventReview.. EventReviews GetEventReview CreateEventReview DTOs Types Event.cs Event type EventReview.cs EventReview type With..

Are there good reasons not to use an ORM? [closed]

http://stackoverflow.com/questions/194147/are-there-good-reasons-not-to-use-an-orm

config and possibly refactoring the business classes and DTOs. Also using NHibernate you can run into unforeseen problems..

POCO vs DTO

http://stackoverflow.com/questions/725348/poco-vs-dto

the blogs I read describe POCO in the way DTO is defined DTOs are simple data containers used for moving data between the.. data using objects. While you can treat POCOs like DTOs you run the risk of creating an anemic domain model if you do.. do so. Additionally there's a mismatch in structure since DTOs should be designed to transfer data not to represent the true..

?œDo not use Abstract Base class in Design; but in Modeling/Analysis??/a>

http://stackoverflow.com/questions/9470013/do-not-use-abstract-base-class-in-design-but-in-modeling-analysis

the blogs I read describe POCO in the way DTO is defined DTOs are simple data containers used for moving data between the.. data using objects. While you can treat POCOs like DTOs you run the risk of creating an anemic domain model if you do.. do so. Additionally there's a mismatch in structure since DTOs should be designed to transfer data not to represent the true..