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
Like this?
var iList = Method().SelectMany(n => n);