Which linq query more productive
values.SelectMany(val => val.childs).Where(predicate)
or
values.SelectMany(val => val.childs.Where(predicate))
where val.childs is array Child[]
Thanks
Which linq query more productive
values.SelectMany(val => val.childs).Where(predicate)
or
values.SelectMany(val => val.childs.Where(predicate))
where val.childs is array Child[]
Thanks