Say I have a class Customer which has a property FirstName. Then I have a List.
Can LINQ be used to find if the list has a customer with Firstname = 'John' in a single statement.. how?
|
|
|
|
|
|
|
LINQ defines an extension method that is perfect for solving this exact problem:
make sure you reference System.Core, that's where LINQ lives. |
|||
|
|
zvolkov's answer is the perfect one to find out if there is such a customer. If you need to use the customer afterwards, you can do:
I know this isn't what you were asking, but I thought I'd pre-empt a follow-on question :) (Of course, this only finds the first such customer... to find all of them, just use a normal |
||
|
|
|
john will be null if no customer exists with a first name of "John". |
||||||||||
|
|
|
Another possibility
|
||
|
|
Using Linq you have many possibilities, here one without using lambdas:
|
||
|
|
|
|
One option for the follow on question (how to find a customer who might have any number of first names):
|
||
|
|
|
|
customerList.Any(x=>x.Firstname == "John") |
||||||||
|
|
|
how do i do it if the FirstName can be any of the names in List names = {"John","Max","Pete"} |
||||
|