Data Transfer Object (DTO)

来源:互联网 发布:百度云盘网络证书无效 编辑:程序博客网 时间:2024/05/19 03:44
/*By Jiangong SUN*/

DTO pattern is used to "transfer data" using objects

DTO vs. VO(Value Objects)

Value Object must be immutable, serializable and it’s content must be publicly accessible.
A Value Object can only be changed and persisted by the creation of a new Value Object based on the values of the original Value Object obtained.

A Transfer Object while similar in most respects is mutable. In addition there is a reasonable expectation that the Transfer Object will be persisted if it is returned to the originating layer.


Usage of DTO: It can get attributes from differenct objects and consists as a new object for particular use.



In my project i've used it to fill in the asp .net repeater.

Code example:

public class UniverseDTO    {        public string ImagePath { get; set; }        public string Code { get; set; }        public string Label { get; set; }        public int Order { get; set; }        public List<SubUniverseDTO> SubUniverses { get; set; }    }

 List<UniverseDTO> universes = (from universe in UniversesService.GetUniverses()               select new UniverseDTO               {                 Code = universe.code,                 Label = universe.label,                 Order = universe.order,                 ImagePath = newpath,                 SubUniverses = UniversesService.GetSubUniverses(universe.code)                }).OrderBy(x => x.Order).ToList();


Reference :
http://rrees.wordpress.com/2007/05/13/transfer-objects-versus-value-objects/
http://stackoverflow.com/questions/725348/poco-vs-dto
http://martinfowler.com/eaaCatalog/dataTransferObject.html
http://www.adam-bien.com/roller/abien/entry/value_object_vs_data_transfer
http://www.adam-bien.com/roller/abien/entry/how_evil_are_actually_data
http://stackoverflow.com/questions/1612334/difference-between-dto-vo-pojo-javabeans

原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 手机密码找不回来了怎么办? 手机密码图案忘了怎么办 手机屏幕图案锁忘了怎么办 捡到苹果7有id锁怎么办 魅族什么都忘了怎么办 海信电视百事通登陆失败怎么办 去哪儿换号了怎么办 ipan充不进去电怎么办 安卓数据线松了怎么办 索尼z5耳机掉漆怎么办 索尼z5无限重启怎么办 苹果8基带坏了怎么办 oppo手机忘记图案密码怎么办 电池充不进去电怎么办 电脑充不进去电怎么办 苹果5c白苹果怎么办 港行不支持电信卡怎么办 安卓导航不开机怎么办 鞭炮放一半不响怎么办 禁止鸣笛的地方鸣笛了怎么办 手被炮仗炸了怎么办 手被猴子抓伤了怎么办 炸东西剩的油怎么办 炸臭豆腐剩的油怎么办 油炸久了油发黑怎么办 炸鱼的时候粘锅怎么办 吃了葱蒜有味怎么办 哺乳期喝了抹茶怎么办 干炸小黄鱼凉了怎么办 烧鱼酱油放多了怎么办 夏天腿干燥起皮怎么办 螃蟹柿子同时吃了怎么办 柿子和螃蟹一起吃怎么办 螃蟹和柿子吃了怎么办 今天为什么很多网站打不开怎么办 网上报名人太多服务器卡怎么办 网站换了电脑打不开怎么办 感冒时后背发凉怎么办? 脚扭了脚背疼怎么办 五妙水仙膏干了怎么办 红苹果接不到任务了怎么办