哪个linq查询更有效率

时间:2010-09-15 18:23:57

标签: linq

哪个linq查询更有效率

values.SelectMany(val => val.childs).Where(predicate)

values.SelectMany(val => val.childs.Where(predicate))

其中val.childs是数组Child []

由于

1 个答案:

答案 0 :(得分:0)

对于大多数用途,两者都不应该明显更快。