I have a nested array and I have to flatten it , I have done it with Linq query so I was thinking if it is possible to do the same using lambda Linq
from outer in outerArray
from inner in outer.innerArray
select(// create a new obect
).ToList()
How can the above expression be written in lambda linq