How do you change a linq group IQueryable<IEnumerable<T>>
to IQueryable<T>
?
So that i can join the iqueryable with other entities?
Asked
Active
Viewed 147 times
0

yohannist
- 4,166
- 3
- 35
- 58
2 Answers
2
That's what the SelectMany
method is for:
yourQueryable.SelectMany(x => x);

Selman Genç
- 100,147
- 13
- 119
- 184