Aggregate function Min() value in lambda C#
August 13, 2022 2022-08-13 4:28Aggregate function Min() value in lambda C#
- Create a console application and create a customer class in it.
public class Customer
{
public int CustomerCode { get; set; }
public string CustomerName { get; set; }
public int TotalOrder { get; set; }
}
2. Create a list of customers.
var customerList = new List()
{
new Customer{CustomerCode=101,CustomerName = "Steve", TotalOrder = 2},
new Customer{CustomerCode=102,CustomerName = "Mark", TotalOrder = 4},
new Customer{CustomerCode=103,CustomerName = "Bill", TotalOrder = 7},
new Customer{CustomerCode=104,CustomerName = "Dell",TotalOrder = 6}
};
3. Select minimum Total orders from the list using Min() function in Lambda
var result = customerList.Min(a => a.TotalOrder);
Console.WriteLine(result);

Please comment and share if you like this post and tell us about how we can enhance our posts. Thanks.
Subhajit
This is Subhajit Sinha, with more than 8 years of experience as a full stack developer in renowned Multinational Companies, here in this portal as an online tutor I will guide you personally to level up your programming skills and also will coach you to augment your career and salary as well.
Search
Popular posts
