I have these business classes: class BaseNode { public string name; } class CompositeNode : BaseNode { public List<BaseNode> childs = new List<BaseNode>();
Greg Young talks about avoiding getters and setters on domain objects when using Domain Driven Design. For the use case where I want information from a persistent store to be rendered to the screen, w
I\'m trying to generate DTO\'s with T4.I found a great blog post that does exactly what i\'m looking for but it explodes on Nullable data types.
Ever since I started using an ORM for my day to day data access. I\'ve started to think about how much I should rely formatting functions for my columns. By formatting functions, I me开发者_JAVA百科an
As I understand, Data Transfer Objects are used for different purposes, so let\'s bound the scope with the view layer in Java (JSF) -based web-applications (i.e. there are usuallysome entity-objects m
I have been doing quite a bit of work lately that involves taking stored procedure calls and mapping them to private DTO classes. I was thinking the other day there has to be an easier way. So far thi
I\'m looking for a way to retrieve a collection of DTOs from my WCF data service in a way that will allow me to be informed every time a whole DTO from the collection has finished downloading, also I
I see DTO types being created within开发者_如何学C and passed between types in the domain model. Is this good practise?
I am writing a Web Service to retrieve Invoice information from a database table. The specifics are as follows:
I want to develop a data-driven WPF application, which uses WCF to connect to the server-side, which itself uses NHibernate to persist data. For exam开发者_StackOverflowle there is a domain-object cal