摘要: var dlist = new List<ExpandoObject>();/*ohter code.*/使用linq时要将item 转换为dynamic类型才能使用自定义的字段.var objs = from item in dlist where (item as dynamic).CustomerField > 0 select item; 阅读全文
posted @ 2013-01-07 13:42 wccc 阅读(329) 评论(0) 推荐(0) 编辑