@msg7086 我觉得也不全是, LINQ 应该是这样的 var elderNames = from person in country.people where person.CanAddLifeFromOthers select person.Name 我不大理解 Inline Lambda 的 Inline 是啥意思,但感觉这个已经不是简单的 Lambda 可以涵盖的了
msg7086
2016-04-07 11:26:14 +08:00
@otakustay 嗯我是说那堆链式扩展方法啦。 相对于 from 语句我更偏向于 country.people.where(=>).select(=>)这种表达。