var page = pagesRepository.GetPages();
var categoryPages = page.ChildCategoryPages;
var articlePages = categoryPages.Select(x => x.ChildPages);
articlePages IQueryable<IQueryable<Page>>. but i need all the pages in IQueryable<Page>.
How to do it?
source
share