Mam zapytanie LINQ, które zwraca, IEnumerable<List<int>>
ale chcę tylko zwrócić, List<int>
więc chcę scalić cały mój rekord w mojej IEnumerable<List<int>>
z tylko jedną tablicą.
Przykład:
IEnumerable<List<int>> iList = from number in
(from no in Method() select no) select number;
Chcę przenieść cały mój wynik IEnumerable<List<int>>
tylko na jedenList<int>
Stąd z tablic źródłowych: [1,2,3,4] i [5,6,7]
Chcę tylko jedną tablicę [1,2,3,4,5,6,7]
Dzięki