I have a LINQ query which returns IEnumerable> but i want to return only List so i want to merge all my record in
IEnumerable>
List
If you have a List> k you can do
List> k
List flatList= k.SelectMany( v => v).ToList();