Difference Between Select and SelectMany

后端 未结 17 1088
长情又很酷
长情又很酷 2020-11-22 05:21

I\'ve been searching the difference between Select and SelectMany but I haven\'t been able to find a suitable answer. I need to learn the differenc

17条回答
  •  情歌与酒
    2020-11-22 05:46

    I understand SelectMany to work like a join shortcut.

    So you can:

    var orders = customers
                 .Where(c => c.CustomerName == "Acme")
                 .SelectMany(c => c.Orders);
    

提交回复
热议问题