I know data transfer objects are used for transferring data only and having lightweight objects over the wire.
If I have tens or hundreds of business objects, creating dto's and mappers seems like a lot of work.
What about creating a super/hybrid object which does validation and business rules AND used for transferring data. For example, for properties which are used for data transfer, decorate these with [DataMember] (for WCF). Does this mean only these properties get transferred? Would this work and what are the drawbacks?