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
With query syntax:
var values = from inner in outer from value in inner select value;