I have following code:
var purchaseItems = this.GetMenuItemRows().Select(
a => a.DishListItemRow.GetDishIngredientRows().Select(
b => b.PurchaseItemRow));
The LINQ expression is returning result of type IEnumerable<IEnumerable<PurchaseItemRow>>
How do I get a result of type IEnumerable<PurchaseItemRow>
?