Say I have a class Customer which has a property FirstName. Then I have a List<Customer>.
Can LINQ be used to find if the list has a customer with Firstname = 'John' in a single statement.. how?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
LINQ defines an extension method that is perfect for solving this exact problem:
make sure you reference System.Core.dll, that’s where LINQ lives.