Skip to main content

Quick Examples for LINQ Select And SelectMany and Differences

What is the Difference Between LINQ Select and SelectMany

Say we are having a Customer class and Order class

    class Customer

    {

        public string CusotmerName { get; set; }

        public string CusotmerCode { get; set; }

        public string CusotmerStatus { get; set; }

        public List<Order> OrderList { get; set; }

 

        public Customer(string pCusotmerName, string pCusotmerCode, string pCusotmerStatus, List<Order> pOrderList)

        {

            CusotmerName = pCusotmerName;

            CusotmerCode = pCusotmerCode;

            CusotmerStatus = pCusotmerStatus;

            OrderList = pOrderList;

        }

    }

 

 

    class Order

    {

        public int OrderNumber { get; set; }

        public DateTime OrderDate { get; set; }

        public string OrderStatus { get; set; }

 

        public Order(int pOrderNumber, DateTime pOrderDate, string pOrderStatus)

        {

            OrderNumber = pOrderNumber;

            OrderDate = pOrderDate;

            OrderStatus = pOrderStatus;

        }

    }

 

A Customer may generate any number of orders

In the following Line we do have a List of customers who are having the list of orders he / she has created inside the Customer Class

 

public List<Order> AllOrdersList = new List<Order>();

 

The question is if we want to see all the orders (only) for particular set of Customers

 

Select in LINQ will help you only to some extent

 

Let's see how it is

 

Let's generate sample data for 3 customers

 

List<Customer> LstCustomer = new List<Customer>()

            {

                new Customer("Cust 1","CUS1","Active",new List<Order>()

                {

                    new Order(100, DateTime.Now, "New"),

                    new Order(101, DateTime.Now.AddDays(-2), "InProgress"),

                    new Order(102, DateTime.Now, "New"),

                    new Order(103, DateTime.Now.AddDays(-10), "Complete")

                }),

 

 

                new Customer("Cust 2","CUS2","Active",new List<Order>()

                {

                    new Order(120, DateTime.Now, "New"),

                    new Order(121, DateTime.Now.AddDays(-2), "InProgress"),

                    new Order(122, DateTime.Now, "New"),

                    new Order(123, DateTime.Now.AddDays(-10), "Complete")

                }),

 

 

                new Customer("Cust 3","CUS3","InActive",new List<Order>()

                {

                    new Order(130, DateTime.Now, "OnHold"),

                    new Order(131, DateTime.Now.AddDays(-2), "InProgress"),

                    new Order(132, DateTime.Now, "OnHold"),

                    new Order(133, DateTime.Now.AddDays(-10), "Complete")

                })

            };

 

 

Now executing the following query

 

var selectResult = LstCustomer.Select(X => X.OrderList);

 

As a output you will get a list of lists

i.e. List<List<Order>>

 

// To dig deeper in this

 

// We are implementing Select Many in this

 

var selectManyResult = LstCustomer.SelectMany(X => X.OrderList);

 

// The output is awesome, as this is returning the list of Orders alone

 

           

 // Let's add more filters to this

 // Getting only the "New" orders

 

 var selectManyResul2 = LstCustomer

     .SelectMany(X => X.OrderList)

     .Where(X => X.OrderStatus == "New");

 

 

 // Adding more filters

 

 // Getting the Active Customers and

 // Getting only the "New" orders from those

 

 var selectManyResult3 = LstCustomer

     .Where(X => X.CusotmerStatus == "Active")

     .SelectMany(X => X.OrderList)

     .Where(X => X.OrderStatus == "New");

 

I think this has helped you to learn the difference between Select and SelectMany,

 

The source code is available in the following link

https://github.com/oneananda/C_Sharp_Examples/blob/main/LINQ_Examples/LINQ_Select_Vs_SelectMany.cs

Comments

Popular posts from this blog

Task Parallel Library (TPL) and Akka.NET: Differences

Task Parallel Library (TPL) and Akka.NET are both powerful tools in the .NET ecosystem for handling parallelism and concurrency, but they serve different purposes and use different models of computation. Here are some key differences:s 1.    Actor Model vs Task-Based Model: Akka.NET is built around the actor model, where actors are the fundamental units of computation and they communicate by exchanging messages. TPL, on the other hand, is task-based. It's designed to make developers more productive by simplifying the process of adding parallelism and concurrency to applications. TPL uses tasks (which are independently executing work units) and provides various ways to control and coordinate them. 2.    Fault Tolerance: One of the key features of Akka.NET is its built-in fault tolerance. It has a "let-it-crash" philosophy, where the system is designed to self-heal from errors. If an actor fails, its parent actor can decide on the supervision strategy: either to resta

Extension Methods - Advanced

Here we will see how can we use the Extension Methods in advanced manner in other types Imagine you often need to retrieve items from a List based on a custom criterion that the built-in LINQ methods don't cover. Extension Methods for Lists: Filtering based on Custom Criteria And the output would be   Extending Enums: Displaying Descriptive Strings Output: Extending DateTime: Calculating Age     Output: The code samples can be found at https://github.com/oneananda/C_Sharp_Examples/tree/main/ExtensionMethods