"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Find the Person with the Earliest Birthdate Using LINQ?

How to Find the Person with the Earliest Birthdate Using LINQ?

Posted on 2025-03-23
Browse:680

How to Find the Person with the Earliest Birthdate Using LINQ?

Use LINQ to find an object with the minimum or maximum attribute value

LINQ provides a powerful and efficient way to query data. It is especially useful when selecting objects based on specific conditions, such as finding objects with the smallest or largest value of a particular property.

Suppose you have a list of Person objects that have a nullable DateOfBirth property. You may need to determine the earliest date of birth.

One method is to use the Min method to find the minimum value of the DateOfBirth attribute. However, this will only return the minimum date value, not the actual Person object.

To get the corresponding object, you can use the Aggregate method:

var firstBorn = People.Aggregate((curMin, x) => (curMin == null || (x.DateOfBirth ?? DateTime.MaxValue) 
]

Aggregate method takes two parameters: the initial accumulator value and a function that combines the current accumulator and each element in the sequence to generate a new accumulator value.

In this example, the initial accumulator value is set to null. The function passed to the Aggregate method checks whether the current accumulator value is null, or whether the DateOfBirth property of the current element (replace the null value with DateTime.MaxValue) is earlier than the DateOfBirth property of the current accumulator. If true, the function returns the current element as the new accumulator; otherwise, it returns the current accumulator.

The result of Aggregate is the earliest Person object with the date of birth. This simpler method does not require a second query to retrieve the corresponding object.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3