摘要: DTO(Data Transfer Object)数据传输对象,只是传输数据,完成与领域对象之间的转换,并不包含领域业务处理。 当领域模型设计人员只关注核心业务,满足于领域模型的精巧,而不关心具体实现的时候,DTO就会大量出现。 系统复杂化后,DTO可能是多个Domain Model组合实现... 阅读全文
posted @ 2014-06-04 20:00 libingql 阅读(5327) 评论(0) 推荐(0) 编辑
摘要: C#中List.ForEach 方法是对 List 的每个元素执行指定操作。 示例:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.... 阅读全文
posted @ 2014-06-04 11:29 libingql 阅读(38874) 评论(1) 推荐(1) 编辑