关于Lambda
摘要:
1. 查询时,包含关联子对象。如: 数据库中包含表Father和Son,映射实体如下:public class Father{ public string Name{get;set;} public string SonId{get;set;} public Son Son{get;set;}}public class Son{ public string SonId{get;set;} public string Name{get;set;} public int Age{get;set;}} 如果在查询Father的时候想包含子对象Son,语法为: ... 阅读全文
posted @ 2013-09-26 02:16 MikeJia 阅读(213) 评论(0) 推荐(0) 编辑